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

Properties

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

Methods