public class BoundingBox3D
extends java.lang.Object
implements java.io.Serializable
3D bounding box class.
| Modifier and Type | Field and Description |
|---|---|
Point3D |
lower
The minimum 3D point of the bounding box, namely the 3D point object with the smallest X, Y, Z coordinates (
Point3D). |
Point3D |
upper
The maximum 3D point of the bounding box, namely the 3D point object with the largest X, Y, Z coordinates (
Point3D). |
| Constructor and Description |
|---|
BoundingBox3D()
The Constructor.
|
BoundingBox3D(Point3D lower, Point3D upper)
The Constructor.
|