| 139 | |
| 140 | |
| 141 | void debugDrawSphere (const Matrix34& m34, float fRadius, const float pColor[4]) |
| 142 | { |
| 143 | for (int nAxis = 0; nAxis < 3; ++nAxis) |
| 144 | debugDrawCircle(m34, fRadius, nAxis, pColor); |
| 145 | |
| 146 | debugDrawLine (m34*Vec3(-fRadius/2,0,0),m34*Vec3(fRadius,0,0), pColor); |
| 147 | } |
| 148 | |
| 149 | void debugDrawRootBone (const Matrix44& rBone, float fSize, const float pColor[4]) |
| 150 | { |
no test coverage detected