Example #1
0
 /// <summary>
 /// Checks an object for any collisions with other objects.
 /// </summary>
 /// <param name="c">The object to check for collisions.</param>
 /// <returns><code>true</code> if there are any collisions, <code>false</code> otherwise.</returns>
 public bool IsCollision(T c)
 {
     return(_rootNode.IsCollision(c));
 }