Interface ILogQuaternion

Logarithmic quaternion interface for representing quaternion logarithms. Used in quaternion interpolation and advanced quaternion mathematics.

interface ILogQuaternion {
    _v: Float32Array;
    className: string;
    w: number;
    x: number;
    y: number;
    z: number;
}

Implemented by

Properties

Properties

_v: Float32Array

Internal Float32Array storage for logarithmic quaternion components

className: string

The class name identifier

w: number

The w component of the logarithmic quaternion

x: number

The x component of the logarithmic quaternion

y: number

The y component of the logarithmic quaternion

z: number

The z component of the logarithmic quaternion