Пример #1
0
Файл: Box.java Проект: RMMJR/g3m
 public final boolean touches(BoundingVolume that) {
   if (that == null) {
     return false;
   }
   return that.touchesBox(this);
 }