Interface Vector3Like

A quantity with magnitude and direction in three dimensions.

interface Vector3Like {
    0: number;
    1: number;
    2: number;
}

Hierarchy (view full)

Implemented by

Properties

0 1 2

Properties

0: number

The first component of this vector.

1: number

The second component of this vector.

2: number

The third component of this vector.