interface QuadtreeObject {
    r: Rectangle;
    t: any;
    n: Set<Quadtree>;
}

Properties

r t n

Properties

r: Rectangle
t: any
n: Set<Quadtree>