nlerp(quaternion, quaternion, float)
Returns the result of a normalized linear interpolation between two quaternions q1 and a2 using an interpolation parameter t.
Read time 1 minuteLast updated 4 days ago
Definition
- Type: Method
- Namespace: Unity.Mathematics
- Assembly: UnityEngine.MathematicsModule
public static quaternion nlerp(quaternion q1, quaternion q2, float t)
Parameters
The first quaternion.
The second quaternion.
The interpolation parameter.
Returns
Type | Description |
|---|---|
| quaternion | The normalized linear interpolation of two quaternions. |
Remarks
Prefer to use this over slerp() when you know the distance between q1 and q2 is small. This can be much higher performance due to avoiding trigonometric function evaluations that occur in slerp().