コード例 #1
0
ファイル: Robot.cs プロジェクト: FRCTeam159/MentorRepository
 /// <summary>
 /// creates a joint between the 2 specified links
 /// </summary>
 /// <param name="parent">The parent link of the joint</param>
 /// <param name="child">The child link of the joint</param>
 /// <returns>newly created joint</returns>
 public Joint AddConnection(Link parent, Link child)
 {
     return child.AddParentJoint(parent);
 }