sprunk-engine
    Preparing search index...

    A class representing a quaternion, used for 3D rotations and transformations. Quaternions avoid gimbal lock and provide smooth interpolation between rotations. This class includes operations such as normalization, rotation, conversion to Euler angles, and linear interpolation (lerp).

    Index

    Constructors

    Properties

    w: number
    x: number
    y: number
    z: number

    Methods

    • Rotate this quaternion around a given axis by a specified angle (in radians).

      Parameters

      • axis: Vector3

        The axis of rotation (must be normalized).

      • angle: number

        The angle of rotation in radians.

      Returns Quaternion

      This quaternion after applying the rotation.

    • Set this quaternion from Euler angles (in radians) with a specified order (default ZXY).

      Parameters

      • pitch: number
      • yaw: number
      • roll: number
      • order: EulerOrder = "ZXY"

      Returns Quaternion

    • Return a new quaternion from Euler angles (in radians) with a specified order (default ZXY).

      Parameters

      • pitch: number
      • yaw: number
      • roll: number
      • order: EulerOrder = "ZXY"

      Returns Quaternion