LinearLerp(FPoint, FPoint, 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.
Namespace: GeometryAssembly: Geometry (in Geometry.dll) Version: 25.2414.4032
public static FPoint Lerp(
FPoint start,
FPoint end,
float progress
)
Public Shared Function Lerp (
start As FPoint,
end As FPoint,
progress As Single
) As FPoint
No code example is currently available or this language may not be supported.
- start FPoint
-
Reference to the start point to be considered.
- end FPoint
-
Reference to the end point to be considered.
- progress Single
-
Current progress value.
FPoint
The linear interpolated point value between start and end, as indicated
by the progress value.