예제 #1
0
파일: Body.java 프로젝트: rdo/speleo
 /**
  * True if this body has reached the edge of the world bounds and hence is frozen in space.
  *
  * @return True if this body has reached the edge of the world bounds.
  */
 public boolean isOutOfBounds() {
   checkBody();
   return jboxBody.isFrozen();
 }