Return a string representation for the material
| 152 | |
| 153 | // Return a string representation for the material |
| 154 | RP3D_FORCE_INLINE std::string Material::to_string() const { |
| 155 | |
| 156 | std::stringstream ss; |
| 157 | |
| 158 | ss << "frictionCoefficient=" << (mFrictionCoefficientSqrt * mFrictionCoefficientSqrt) << std::endl; |
| 159 | ss << "bounciness=" << mBounciness << std::endl; |
| 160 | |
| 161 | return ss.str(); |
| 162 | } |
| 163 | |
| 164 | } |
| 165 |
nothing calls this directly
no outgoing calls
no test coverage detected