A spatial coordinate pair.

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

Properties

x y

Properties

x: number

The x-coordinate.

y: number

The y-coordinate.