| 34 | } |
| 35 | |
| 36 | [[nodiscard]] std::string ToString() const { |
| 37 | return TextFormat( |
| 38 | "BoundingBox(min=(%f, %f, %f), max=(%f, %f, %f))", |
| 39 | min.x, min.y, min.z, max.x, max.y, max.z |
| 40 | ); |
| 41 | } |
| 42 | |
| 43 | operator std::string() const { return ToString(); } |
| 44 |
nothing calls this directly
no outgoing calls
no test coverage detected