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;
}

Properties

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

Methods