5 instantiations of Quadrant
System.Activities.Presentation (5)
System.Activities.Presentation\System\Activities\Presentation\View\QuadTree.cs (5)
62this.root = new Quadrant(null, this.bounds); 345toInsert.topLeft = new Quadrant(toInsert, topLeft); 353toInsert.topRight = new Quadrant(toInsert, topRight); 361toInsert.bottomLeft = new Quadrant(toInsert, bottomLeft); 369toInsert.bottomRight = new Quadrant(toInsert, bottomRight);
15 references to Quadrant
System.Activities.Presentation (15)
System.Activities.Presentation\System\Activities\Presentation\View\QuadTree.cs (15)
30Quadrant root; 31IDictionary<T, Quadrant> table; 65Quadrant parent = this.root.Insert(node, bounds); 69this.table = new Dictionary<T, Quadrant>(); 127Quadrant parent = null; 205Quadrant parent; 212Quadrant topLeft; 213Quadrant topRight; 214Quadrant bottomLeft; 215Quadrant bottomRight; 274public Quadrant(Quadrant parent, Rect bounds) 288internal Quadrant Parent 307internal Quadrant Insert(T node, Rect bounds) 316Quadrant toInsert = this; 338Quadrant child = null;