rfw2d
    Preparing search index...

    Interface SubdividedQuad

    A subidivided quad in the QuadTree.

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

    Properties

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

    Methods