예제 #1
0
 public SVGDepthTree(Rect bounds)
 {
     quadTree = new QuadTree <SVGMesh>(new SVGBounds(bounds.center, bounds.size));
 }
예제 #2
0
 public SVGDepthTree(SVGBounds bounds)
 {
     quadTree = new QuadTree <SVGMesh>(new SVGBounds(bounds.center, bounds.size * 10f));
 }