MCPcopy Create free account
hub / github.com/DanielChappuis/reactphysics3d / to_string

Method to_string

include/reactphysics3d/mathematics/Matrix2x2.h:341–344  ·  view source on GitHub ↗

Get the string representation

Source from the content-addressed store, hash-verified

339
340// Get the string representation
341RP3D_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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected