LinearLerp(Double, Double, Double) 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.2613.4238
public static double Lerp(
double start,
double end,
double progress
)
Public Shared Function Lerp (
start As Double,
end As Double,
progress As Double
) As Double
No code example is currently available or this language may not be supported.
- start Double
-
The starting position.
- end Double
-
The ending position.
- progress Double
-
The progress of completion between the start and end values.
Double
The linear interpolated value between start and end as indicated by
the progress value.