private void SetJoint(Dictionary <JointType, ScaledJoint> skeleton, JointType jointType, Vector3D location)
 {
     skeleton[jointType] =
         new ScaledJoint()
     {
         JointType             = jointType,
         LocationScreenPercent = location
     };
 }
 private void SetJoint(Dictionary<JointType, ScaledJoint> skeleton, JointType jointType, Vector3D location)
 {
     skeleton[jointType] =
         new ScaledJoint()
         {
             JointType = jointType,
             LocationScreenPercent = location
         };
 }