Get a cloned/duplicated instance of this quaternion
Opposite the unreal part of the quaternion
Computes the inverse of this quaternion. The inverse is defined as the conjugate divided by the squared magnitude.
A new quaternion representing the inverse.
Set the quaterion to linear interpolate between two quaternions
Compute the magnitude of the quaternion (squared length)
Normalize the quaternion
Rotate this quaternion around a given axis by a specified angle (in radians).
The axis of rotation (must be normalized).
The angle of rotation in radians.
This quaternion after applying the rotation.
Set this quaternion from Euler angles (in radians) with a specified order (default ZXY).
Set this quaternion from Euler angles (in radians) with a specified order (default ZXY).
Convert the quaternion to Euler angles (in radians) with a specified order (default ZXY).
Static
fromCreate a quaternion from an axis and an angle (in radians).
The axis of rotation (must be normalized).
The angle of rotation in radians.
A new quaternion representing the rotation.
Static
fromReturn a new quaternion from Euler angles (in radians) with a specified order (default ZXY).
Static
fromReturn a new quaternion from Euler angles (in radians, pitch yaw, roll order) with a specified order (default ZXY).
Static
identityGet the identity quaternion
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).