Exemple #1
0
 /// <summary>
 /// Test if the specified bounds is contained by objects in the octree.
 /// </summary>
 /// <param name="checkBounds">3D bounding box around the object.</param>
 /// <returns>Return true if the specified bouding box is contained by that of objects.</returns>
 public bool IsContaining(Bounds checkBounds)
 {
     return(rootNode.IsContaining(ref checkBounds));
 }