Example #1
0
 /**
  * Creates a new AABB at the given position with the given dimensions.
  *
  * @param position The position
  * @param dimensions The dimensions
  */
 public AABB(Vector3d position, Vector3d dimensions) {
   setPosition(position);
   this._dimensions = dimensions;
 }