Example #1
0
 /** Copy constructor. */
 public Box(IBox other) {
   set(other);
 }
Example #2
0
 /** Creates a box with the values contained in the supplied minimum and maximum extents. */
 public Box(IVector3 minExtent, IVector3 maxExtent) {
   set(minExtent, maxExtent);
 }