rfw2d
    Preparing search index...

    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

    Index

    Properties

    points: readonly ReadonlyVec2[]

    Methods