http://www.emgu.com
Perform quaternions linear interpolation
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.3.0.2824 (3.3.0.2824)
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