Interface Quadrilateral

A non-intersecting polygon with four points.

interface Quadrilateral {
    points: Point[];
}

Properties

Properties

points: Point[]

The 4 points forming the quadrilateral.

Generated using TypeDoc