| 83 | } |
| 84 | |
| 85 | virtual void drawContactPoint(const btVector3& PointOnB, const btVector3& normalOnB, btScalar distance, int lifeTime, const btVector3& color) |
| 86 | { |
| 87 | drawLine(PointOnB, PointOnB + normalOnB * distance, color); |
| 88 | btVector3 ncolor(0, 0, 0); |
| 89 | drawLine(PointOnB, PointOnB + normalOnB * 0.01, ncolor); |
| 90 | } |
| 91 | |
| 92 | virtual void reportErrorWarning(const char* warningString) |
| 93 | { |
nothing calls this directly
no test coverage detected