| 281 | + "," + TTostring(v.z) + ")"; |
| 282 | } |
| 283 | std::string toStringWithoutZ(const Ogre::Vector3& v) |
| 284 | { |
| 285 | return "(" + TTostring(v.x) |
| 286 | + "," + TTostring(v.y) + ")"; |
| 287 | } |
| 288 | std::string toString(const Ogre::ColourValue& c) |
| 289 | { |
| 290 | return "[" + TTostring(c.r) |
no test coverage detected