| 24 | } |
| 25 | |
| 26 | const char* CKinematics::LL_BoneName(const u16 ID) const |
| 27 | { |
| 28 | for (const auto& bone : bone_map_N) |
| 29 | if (bone.second == ID) |
| 30 | return bone.first.c_str(); |
| 31 | |
| 32 | return nullptr; |
| 33 | } |
| 34 | |
| 35 | #ifdef DEBUG |
| 36 | void CKinematics::DebugRender(Fmatrix& XFORM) |
no test coverage detected