Defines the 3D point.

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

Properties

x y z

Properties

x: number

X coordinate.

y: number

Y coordinate.

z: number

Z coordinate.