| InterpolationHelperLerp Method (QuaternionF, QuaternionF, Single) |
Namespace: DigitalRune.Mathematics.InterpolationAssembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax public static QuaternionF Lerp(
QuaternionF source,
QuaternionF target,
float parameter
)
Public Shared Function Lerp (
source As QuaternionF,
target As QuaternionF,
parameter As Single
) As QuaternionF
public:
static QuaternionF Lerp(
QuaternionF source,
QuaternionF target,
float parameter
)
static member Lerp :
source : QuaternionF *
target : QuaternionF *
parameter : float32 -> QuaternionF
Parameters
- source
- Type: DigitalRune.Mathematics.AlgebraQuaternionF
The start quaternion. - target
- Type: DigitalRune.Mathematics.AlgebraQuaternionF
The end quaternion. - parameter
- Type: SystemSingle
The interpolation parameter that lies in the interval [0,1]; also known as interpolation
factor or weight of the target value.
Return Value
Type:
QuaternionFThe linear interpolation of the two quaternions.
Remarks Lerp(a, b, 0) returns a. Lerp(a, b, 1) returns b.
Linear interpolation usually creates non-normalized quaternions. This method automatically
renormalizes the result.
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