Get the string representation
| 339 | |
| 340 | // Get the string representation |
| 341 | RP3D_FORCE_INLINE std::string Matrix2x2::to_string() const { |
| 342 | return "Matrix2x2(" + std::to_string(mRows[0][0]) + "," + std::to_string(mRows[0][1]) + "," + |
| 343 | std::to_string(mRows[1][0]) + "," + std::to_string(mRows[1][1]) + ")"; |
| 344 | } |
| 345 | |
| 346 | } |
| 347 |
nothing calls this directly
no outgoing calls
no test coverage detected