Ejemplo n.º 1
0
 public QuadTree(Rectangle bounds, int depth)
 {
     mDepth = depth;
       mTopLeft = mTopRight = mBottomLeft = mBottomRight = null;
       mBounds = bounds;
       mPoints = new List<DblPoint2>();
 }
Ejemplo n.º 2
0
 public QuadTree(Rectangle bounds)
     : this(bounds, 0)
 {
 }