LinearLerp(FPoint3, FPoint3, Single) Method

Return the triple linear interpolation of the values between start and end points representing the specified progress as a value between 0 and 1.

Definition

Namespace: Geometry
Assembly: Geometry (in Geometry.dll) Version: 25.2414.4032
C#
public static FPoint3 Lerp(
	FPoint3 start,
	FPoint3 end,
	float progress
)

Parameters

start  FPoint3
Reference to the start point to be considered.
end  FPoint3
Reference to the end point to be considered.
progress  Single
Current progress value.

Return Value

FPoint3
The linear interpolated point value between start and end, as indicated by the progress value.

See Also