* Copy a bounding box from another bounding box. */
| 14 | * Copy a bounding box from another bounding box. |
| 15 | */ |
| 16 | constexpr BoundingBox(const ::BoundingBox& box) : ::BoundingBox{box.min, box.max} { |
| 17 | // Nothing. |
| 18 | } |
| 19 | |
| 20 | /** |
| 21 | * Compute mesh bounding box limits |
nothing calls this directly
no outgoing calls
no test coverage detected