| 21 | vec3 min_; |
| 22 | vec3 max_; |
| 23 | BoundingBox() = default; |
| 24 | BoundingBox(const vec3& min, const vec3& max) : min_(glm::min(min, max)), max_(glm::max(min, max)) {} |
| 25 | BoundingBox(const vec3* points, size_t numPoints) |
| 26 | { |
nothing calls this directly
no outgoing calls
no test coverage detected