docs.unity3d.com
    Show / Hide Table of Contents

    Method nlerp

    nlerp(quaternion, quaternion, Single)

    Returns the result of a normalized linear interpolation between two quaternions q1 and a2 using an interpolation parameter t.

    Declaration
    public static quaternion nlerp(quaternion q1, quaternion q2, float t)
    Parameters
    Type Name Description
    quaternion q1

    The first quaternion.

    quaternion q2

    The second quaternion.

    Single t

    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().

    Back to top
    Terms of use
    Copyright © 2023 Unity Technologies — Terms of use
    • Legal
    • Privacy Policy
    • Cookies
    • Do Not Sell or Share My Personal Information
    • Your Privacy Choices (Cookie Settings)
    "Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
    Generated by DocFX on 18 October 2023