Get emptiness for each dimension.
| 144 | } |
| 145 | // Get emptiness for each dimension. |
| 146 | std::array<bool, MAX_DIMENSIONS> dimensionEmpty() const { |
| 147 | return {boundEmpty(0), boundEmpty(1), boundEmpty(2), boundEmpty(3)}; |
| 148 | } |
| 149 | |
| 150 | // Merge another bounding box into this one. |
| 151 | void merge(const BoundingBox& other) { |