Represents a two-dimensional vector.

interface Vec3 {
    phi: number;
    x: number;
    y: number;
}

Properties

Properties

phi: number

The roll of the vector.

x: number

The x component of the vector.

y: number

The y component of the vector.