Represents a Point in a 2 dimensional coordinate system.

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

Properties

x y

Properties

x: number

The X coordinate of this Point. (double)

y: number

The Y coordinate of this Point. (double)