Example #1
0
 /**
  * Initializes this box with the extents of an array of points.
  *
  * @return a reference to this box, for chaining.
  */
 public Box fromPoints(IVector3... points) {
   setToEmpty();
   for (IVector3 point : points) {
     addLocal(point);
   }
   return this;
 }