Interface Point3d

Represents a 3D point extending a 2D point with an additional z coordinate.

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

Hierarchy (View Summary)

Properties

x y z

Properties

x: number
y: number
z: number