LinearLerp(FVector2, FVector2, Single) Method

Return the dual 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.2820.4317
C#
public static FVector2 Lerp(
	FVector2 start,
	FVector2 end,
	float progress
)

Parameters

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

Return Value

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

See Also