dacha
    Preparing search index...

    Interface Point

    A point in 2D space with x and y coordinates.

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

    X coordinate of the point

    y: number

    Y coordinate of the point