示例#1
0
文件: Box.java 项目: RMMJR/g3m
 public final boolean touches(BoundingVolume that) {
   if (that == null) {
     return false;
   }
   return that.touchesBox(this);
 }