[This is preliminary documentation and is subject to change.]
Interpolates between two quaternions, using spherical linear interpolation.
Namespace: Rage
Assembly: RagePluginHook (in RagePluginHook.dll) Version: 0.0.0.0 (0.56.1131.11510)
Syntax
public static void Slerp( ref Quaternion start, ref Quaternion end, float amount, out Quaternion result )
Parameters
- start
- Type: RageQuaternion
Start quaternion. - end
- Type: RageQuaternion
End quaternion. - amount
- Type: SystemSingle
Value between 0 and 1 indicating the weight of end. - result
- Type: RageQuaternion
When the method completes, contains the spherical linear interpolation of the two quaternions.
See Also