コード例 #1
0
ファイル: QuadTree.cs プロジェクト: xor-lab/RAWSim-O
 /// <summary>
 /// Returns the number of objects inside this QuadTree.
 /// </summary>
 /// <returns>The number of objects in the tree.</returns>
 public int Count()
 {
     return(_rootNode.Count());
 }