Interface Point

A point with an X and Y coordinate

interface Point {
    x: number;
    y: number;
}

Properties

x y

Properties

x: number

The X coordinate.

y: number

The Y coordinate.

Generated using TypeDoc