Click or drag to resize

QuaternionSlerp Method

Overload List
  NameDescription
Public methodSlerp(Quaternion, Double)
Spherical interpolation between this Quaternion and another Quaternion

This is most commonly used to find an intermediate rotation between between a start and an end rotation. When t = 0 returns this. When t = 1 returns b. When t = 0.5 returns a rotation "midway" between this and b.

Public methodStatic memberSlerp(Quaternion, Quaternion, Double)
Spherical interpolation between two Quaternions

This is most commonly used to find an intermediate rotation between between a start and an end rotation. When t = 0 returns a. When t = 1 returns b. When t = 0.5 returns a rotation "midway" between a and b.

Public methodStatic memberSlerp(Quaternion, Quaternion, Single)
Spherical interpolation between two Quaternions

This is most commonly used to find an intermediate rotation between a start and an end rotation. When t = 0 returns a. When t = 1 returns b. When t = 0.5 returns a rotation "midway" between a and b.

Top
See Also