Esempio n. 1
0
File: Box.java Progetto: RMMJR/g3m
 public final boolean touches(BoundingVolume that) {
   if (that == null) {
     return false;
   }
   return that.touchesBox(this);
 }