remove() private méthode

private remove ( Collider obj ) : void
obj Collider
Résultat void
Exemple #1
0
 /// <summary>
 /// removes the object from the SpatialHash using a brute force approach
 /// </summary>
 /// <param name="obj">Object.</param>
 public void removeWithBruteForce(Collider obj)
 {
     _cellDict.remove(obj);
 }
Exemple #2
0
 /// <summary>
 /// removes the object from the SpatialHash using a brute force approach
 /// </summary>
 /// <param name="obj">Object.</param>
 public void remove(Collider obj)
 {
     _cellDict.remove(obj);
 }