コード例 #1
0
 public QuadTree(Rectangle bounds, int depth)
 {
     mDepth = depth;
       mTopLeft = mTopRight = mBottomLeft = mBottomRight = null;
       mBounds = bounds;
       mPoints = new List<DblPoint2>();
 }
コード例 #2
0
 public QuadTree(Rectangle bounds)
     : this(bounds, 0)
 {
 }