Return the string representation of the shape
| 87 | |
| 88 | // Return the string representation of the shape |
| 89 | std::string HeightFieldShape::to_string() const { |
| 90 | |
| 91 | std::stringstream ss; |
| 92 | |
| 93 | ss << "HeightFieldShape{" << std::endl; |
| 94 | |
| 95 | ss << "scaling=" << mScale.to_string() << std::endl; |
| 96 | ss << ", HeightField=" << mHeightField->to_string() << std::endl; |
| 97 | ss << "}"; |
| 98 | |
| 99 | return ss.str(); |
| 100 | } |
nothing calls this directly
no outgoing calls
no test coverage detected