Interface VectorE3

Cartesian coordinates of a vector using the standard basis.

interface VectorE3 {
    x: number;
    y: number;
    z: number;
}

Hierarchy (view full)

Properties

x y z

Properties

x: number

The Cartesian x-coordinate.

y: number

The Cartesian y-coordinate.

z: number

The Cartesian z-coordinate.