Interface VectorXZ

Represents a two-directional vector with X and Z components.

interface VectorXZ {
    x: number;
    z: number;
}

Hierarchy (View Summary)

Properties

x z

Properties

x: number

X component of this vector.

z: number

Z component of this vector.