Exemplo n.º 1
0
 private static void CreateBones(ICollection <Bone> list, params JointType[] childJoints)
 {
     foreach (var joint in childJoints)
     {
         list.Add(Bone.FromChildJoint(joint));
     }
 }