Interface ReadonlyPoly

interface ReadonlyPoly {
    points: readonly ReadonlyVec2[];
    clone(): Poly;
    containsPoint(point: Vec2Like): boolean;
    equals(other: PolyLike, epsilon?: number): boolean;
    intersectsRect(other: RectLike): boolean;
}

Hierarchy (View Summary)

Implemented by

Properties

points: readonly ReadonlyVec2[]

Methods