| 96 | } |
| 97 | |
| 98 | static void OutputBone(int i, Bone* bone, int indent) |
| 99 | { |
| 100 | OutputIndent(indent); |
| 101 | printf("#%d: %s idx: %u parent: %u node: %s inv_bind_pose:\n", i, bone->m_Name, bone->m_Index, bone->m_ParentIndex, bone->m_Node?bone->m_Node->m_Name:"null"); |
| 102 | OutputMatrix(bone->m_InvBindPose); |
| 103 | printf("\n"); |
| 104 | } |
| 105 | |
| 106 | static void OutputSkin(Skin* skin, int indent) |
| 107 | { |
no test coverage detected