Interface QuaternionLike

A complex number that is commonly used to describe rotations.

interface QuaternionLike {
    0: number;
    1: number;
    2: number;
    3: number;
}

Hierarchy

  • Record<number, number>
    • QuaternionLike

Implemented by

Properties

0 1 2 3

Properties

0: number

The first component of this quaternion.

1: number

The second component of this quaternion.

2: number

The third component of this quaternion.

3: number

The fourth component of this quaternion.