Perform quaternions linear interpolation

Namespace: Emgu.CV
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
public Quaternions Slerp(
	Quaternions quaternionsOther,
	double weightForOther
)
Public Function Slerp ( _
	quaternionsOther As Quaternions, _
	weightForOther As Double _
) As Quaternions
public:
Quaternions Slerp(
	Quaternions quaternionsOther, 
	double weightForOther
)

Parameters

quaternionsOther
Quaternions
The other quaternions to interpolate with
weightForOther
Double
If 0.0, the result is the same as this quaternions. If 1.0 the result is the same as quaternionsOther

Return Value

The linear interpolated quaternions

See Also