rfw2d
    Preparing search index...

    Interface Quad

    A quad in the QuadTree.

    interface Quad {
        bottomLeft?: Quad;
        bottomRight?: Quad;
        bounds: ReadonlyRect;
        depth: number;
        entryCount: number;
        topLeft?: Quad;
        topRight?: Quad;
        isSubdivided(): this is SubdividedQuad;
    }
    Index

    Properties

    bottomLeft?: Quad
    bottomRight?: Quad
    bounds: ReadonlyRect
    depth: number
    entryCount: number
    topLeft?: Quad
    topRight?: Quad

    Methods