http://www.emgu.com
Perform quaternions linear interpolation
Namespace: Emgu.CVAssembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.1.0.2282 (3.1.0.2282)
Syntaxpublic Quaternions Slerp(
Quaternions quaternionsOther,
double weightForOther
)
Public Function Slerp (
quaternionsOther As Quaternions,
weightForOther As Double
) As Quaternions
public:
Quaternions Slerp(
Quaternions quaternionsOther,
double weightForOther
)
member Slerp :
quaternionsOther : Quaternions *
weightForOther : float -> Quaternions
Parameters
- quaternionsOther
- Type: Emgu.CVQuaternions
The other quaternions to interpolate with - weightForOther
- Type: SystemDouble
If 0.0, the result is the same as this quaternions. If 1.0 the result is the same as quaternionsOther
Return Value
Type:
QuaternionsThe linear interpolated quaternions
See Also