Example #1
0
 public BoundingBox(Vector3f cornerA, Vector3f cornerB) {
   this.min = cornerA.min(cornerB);
   this.max = cornerA.max(cornerB);
 }