|  | 
|  | BBox () | 
|  | The default constructor creates an invalid bounding box. 
 | 
|  | 
|  | BBox (const Vec3T &xyzMin, const Vec3T &xyzMax) | 
|  | Construct a bounding box that exactly encloses the given minimum and maximum points. 
 | 
|  | 
|  | BBox (const Vec3T &xyzMin, const Vec3T &xyzMax, bool sorted) | 
|  | Construct a bounding box that exactly encloses the given minimum and maximum points. 
 | 
|  | 
|  | BBox (const Vec3T &xyzMin, const ElementType &length) | 
|  | Contruct a cubical bounding box from a minimum coordinate and an edge length. 
 | 
|  | 
|  | BBox (const ElementType *xyz, bool sorted=true) | 
|  | Construct a bounding box that exactly encloses two points, whose coordinates are given by an array of six values, x1, y1, z1, x2, y2 and z2. 
 | 
|  | 
|  | BBox (const BBox &)=default | 
|  | 
| BBox & | operator= (const BBox &)=default | 
|  | 
| void | sort () | 
|  | Sort the mininum and maximum points of this bounding box by their x, y and z components. 
 | 
|  | 
| const Vec3T & | min () const | 
|  | Return a const reference to the minimum point of this bounding box. 
 | 
|  | 
| const Vec3T & | max () const | 
|  | Return a const reference to the maximum point of this bounding box. 
 | 
|  | 
| Vec3T & | min () | 
|  | Return a non-const reference to the minimum point of this bounding box. 
 | 
|  | 
| Vec3T & | max () | 
|  | Return a non-const reference to the maximum point of this bounding box. 
 | 
|  | 
| bool | operator== (const BBox &rhs) const | 
|  | Return trueif this bounding box is identical to the given bounding box.
 | 
|  | 
| bool | operator!= (const BBox &rhs) const | 
|  | Return trueif this bounding box differs from the given bounding box.
 | 
|  | 
| bool | empty () const | 
|  | Return trueif this bounding box is empty, i.e., it has no (positive) volume.
 | 
|  | 
| bool | hasVolume () const | 
|  | Return trueif this bounding box has (positive) volume.
 | 
|  | 
|  | operator bool () const | 
|  | Return trueif this bounding box has (positive) volume.
 | 
|  | 
| bool | isSorted () const | 
|  | Return trueif all components of the minimum point are less than or equal to the corresponding components of the maximum point.
 | 
|  | 
| Vec3d | getCenter () const | 
|  | Return the center point of this bounding box. 
 | 
|  | 
| Vec3T | extents () const | 
|  | Return the extents of this bounding box, i.e., the length along each axis. 
 | 
|  | 
| size_t | maxExtent () const | 
|  | Return the index (0, 1 or 2) of the longest axis. 
 | 
|  | 
| size_t | minExtent () const | 
|  | Return the index (0, 1 or 2) of the shortest axis. 
 | 
|  | 
| ElementType | volume () const | 
|  | Return the volume enclosed by this bounding box. 
 | 
|  | 
| bool | isInside (const Vec3T &xyz) const | 
|  | Return trueif the given point is inside this bounding box.
 | 
|  | 
| bool | isInside (const BBox &) const | 
|  | Return trueif the given bounding box is inside this bounding box.
 | 
|  | 
| bool | hasOverlap (const BBox &) const | 
|  | Return trueif the given bounding box overlaps with this bounding box.
 | 
|  | 
| bool | intersects (const BBox &other) const | 
|  | Return trueif the given bounding box overlaps with this bounding box.
 | 
|  | 
| void | expand (ElementType padding) | 
|  | Pad this bounding box. 
 | 
|  | 
| void | expand (const Vec3T &xyz) | 
|  | Expand this bounding box to enclose the given point. 
 | 
|  | 
| void | expand (const BBox &) | 
|  | Union this bounding box with the given bounding box. 
 | 
|  | 
| void | expand (const Vec3T &xyzMin, const ElementType &length) | 
|  | Union this bounding box with the cubical bounding box with minimum point xyzMin and the given edge length. 
 | 
|  | 
| void | translate (const Vec3T &t) | 
|  | Translate this bounding box by (tx, ty, tz). 
 | 
|  | 
| template<typename MapType> | 
| BBox | applyMap (const MapType &map) const | 
|  | Apply a map to this bounding box. 
 | 
|  | 
| template<typename MapType> | 
| BBox | applyInverseMap (const MapType &map) const | 
|  | Apply the inverse of a map to this bounding box. 
 | 
|  | 
| void | read (std::istream &is) | 
|  | Unserialize this bounding box from the given stream. 
 | 
|  | 
| void | write (std::ostream &os) const | 
|  | Serialize this bounding box to the given stream. 
 | 
|  | 
| template<typename MapType> | 
| BBox< Vec3T > | applyMap (const MapType &map) const | 
|  | 
| template<typename MapType> | 
| BBox< Vec3T > | applyInverseMap (const MapType &map) const | 
|  | 
template<typename Vec3T>
class openvdb::v12_0::math::BBox< Vec3T >
Axis-aligned bounding box.