/* Checks cell-to-bounds collision: objects collide if caller's bounding box collides with callee's
  * cell */
 public bool CheckCell2BoundsCollision(FieldCell other)
 {
     return other.CheckBounds2CellCollision(this);
 }
Esempio n. 2
0
 /* Checks cell-to-bounds collision: objects collide if caller's bounding box collides with callee's
  * cell */
 public bool CheckCell2BoundsCollision(FieldCell other)
 {
     return(other.CheckBounds2CellCollision(this));
 }