| 141 | } |
| 142 | |
| 143 | [[nodiscard]] std::string ToString() const { |
| 144 | return TextFormat( |
| 145 | "Mesh(vertexCount=%d, triangleCount=%d, boneCount=%d)", |
| 146 | vertexCount, triangleCount, boneCount |
| 147 | ); |
| 148 | } |
| 149 | |
| 150 | operator std::string() const { return ToString(); } |
| 151 |
nothing calls this directly
no outgoing calls
no test coverage detected