| InterpolationHelperLerp Method (Vector4D, Vector4D, Double) |
Performs a linear interpolation between two
Vector4D.
Namespace: DigitalRune.Mathematics.InterpolationAssembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax public static Vector4D Lerp(
Vector4D source,
Vector4D target,
double parameter
)
Public Shared Function Lerp (
source As Vector4D,
target As Vector4D,
parameter As Double
) As Vector4D
public:
static Vector4D Lerp(
Vector4D source,
Vector4D target,
double parameter
)
static member Lerp :
source : Vector4D *
target : Vector4D *
parameter : float -> Vector4D
Parameters
- source
- Type: DigitalRune.Mathematics.AlgebraVector4D
The source vector. - target
- Type: DigitalRune.Mathematics.AlgebraVector4D
The target vector. - parameter
- Type: SystemDouble
The interpolation parameter that lies in the interval [0,1]; also known as interpolation
factor or weight of the target value.
Return Value
Type:
Vector4DThe linear interpolation of two vectors.
Remarks Lerp(a, b, 0) returns a. Lerp(a, b, 1) returns b.
The interpolation parameter can lie outside of the interval [0, 1].
Outside of this interval the method actually performs an extrapolation instead of an
interpolation.
See Also