Example #1
0
File: Body.java Project: 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();
 }