コード例 #1
0
        public void Remove(Joint joint)
        {
            if (joint == null)
                throw new ArgumentNullException("joint", "Can't remove null joint");

            jointRemoveList.Add(joint);
        }
コード例 #2
0
        public void Add(Joint joint)
        {
            if (joint == null)
                throw new ArgumentNullException("joint", "Can't add null joint");

            if (!jointAddList.Contains(joint))
            {
                jointAddList.Add(joint);
            }
        }
コード例 #3
0
 public void Remove(Joint joint)
 {
     jointRemoveList.Add(joint);
 }
コード例 #4
0
ファイル: Path.cs プロジェクト: amwaterston/paradux
 /// <summary>
 /// Adds the specified joint.
 /// </summary>
 /// <param name="joint">The joint.</param>
 public void Add(Joint joint)
 {
     _joints.Add(joint);
 }
コード例 #5
0
 public void Add(Joint joint)
 {
     if (!jointAddList.Contains(joint))
     {
         jointAddList.Add(joint);
     }
 }