A single coordinate point in 2D or 3D space.

interface DxfPoint {
    x: number;
    y: number;
    z?: number;
}

Properties

x y z?

Properties

x: number

The x-coordinate.

y: number

The y-coordinate.

z?: number

The z-coordinate.