Interface Point

Represents a 2D point with x and y coordinates.

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

Hierarchy (View Summary)

Properties

x y

Properties

x: number
y: number