Return a string representation
| 91 | |
| 92 | // Return a string representation |
| 93 | std::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 |
nothing calls this directly
no outgoing calls
no test coverage detected