예제 #1
0
파일: Box.java 프로젝트: RMMJR/g3m
 public final boolean touches(BoundingVolume that) {
   if (that == null) {
     return false;
   }
   return that.touchesBox(this);
 }