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

Method to_string

src/constraint/FixedJoint.cpp:93–98  ·  view source on GitHub ↗

Return a string representation

Source from the content-addressed store, hash-verified

91
92// Return a string representation
93std::string FixedJoint::to_string() const {
94 return "FixedJoint{ localAnchorPointBody1=" + mWorld.mFixedJointsComponents.getLocalAnchorPointBody1(mEntity).to_string() +
95 ", localAnchorPointBody2=" + mWorld.mFixedJointsComponents.getLocalAnchorPointBody2(mEntity).to_string() +
96 ", initOrientationDifferenceInv=" + mWorld.mFixedJointsComponents.getInitOrientationDifferenceInv(mEntity).to_string() +
97 "}";
98}
99

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected