コード例 #1
0
 public GotoServiceRequest(NiryoMoveitJoints joints_input, Geometry.Pose target_pose)
 {
     this.joints_input = joints_input;
     this.target_pose  = target_pose;
 }
コード例 #2
0
 public MoverServiceRequest(NiryoMoveitJoints joints_input, Geometry.Pose pick_pose, Geometry.Pose place_pose)
 {
     this.joints_input = joints_input;
     this.pick_pose    = pick_pose;
     this.place_pose   = place_pose;
 }
コード例 #3
0
 public GotoServiceRequest()
 {
     this.joints_input = new NiryoMoveitJoints();
     this.target_pose  = new Geometry.Pose();
 }
コード例 #4
0
 public MoverServiceRequest()
 {
     this.joints_input = new NiryoMoveitJoints();
     this.pick_pose    = new Geometry.Pose();
     this.place_pose   = new Geometry.Pose();
 }