Interface Point

A point on a Cartesian plane.

interface Point {
    @type: "point";
    x: number;
    y: number;
}

Properties

Properties

@type: "point"
x: number

The point's first coordinate.

y: number

The point's second coordinate.