public override AnimatTools.Collections.AnimatCollectionBase Copy()
 {
     MuscleAttachments aryNewList = new MuscleAttachments(m_doParent);
     aryNewList.CopyInternal(this);
     return aryNewList;
 }
 public override AnimatTools.Collections.AnimatCollectionBase Clone(AnimatTools.Framework.DataObject doParent, bool bCutData, AnimatTools.Framework.DataObject doRoot)
 {
     MuscleAttachments aryNewList = new MuscleAttachments(doParent);
     aryNewList.CloneInternal(this, doParent, bCutData, doRoot);
     return aryNewList;
 }