LinearLerp(Single, Single, Single) Method
Return the linear interpolation of the scalar value between start and
end representing the specified progress as a value between 0 and 1.
Namespace: GeometryAssembly: Geometry (in Geometry.dll) Version: 25.2414.4032
public static float Lerp(
float start,
float end,
float progress
)
Public Shared Function Lerp (
start As Single,
end As Single,
progress As Single
) As Single
No code example is currently available or this language may not be supported.
- start Single
-
The starting position.
- end Single
-
The ending position.
- progress Single
-
The progress of completion between the start and end values.
Single
The linear interpolated value between start and end as indicated by
the progress value.