why given only the quaternion, a pose can be determined
line 121, 214, 337. eg,
geometry_msgs::Pose target_pose1;
target_pose1.orientation.w = 1.0;
target_pose1.position.x = 0.28;
target_pose1.position.y = -0.2;
target_pose1.position.z = 0.5;
move_group.setPoseTarget(target_pose1);
question: why given only the quaternion, a pose can be determined??
thanks!
Can you please clarify your question ??
Sorry for my poor expression. I think a pose of a robot should be determined by both position and quaternion, because the quaternion only contain the orientation information of a joint. The "pose1", "pose2" and "pose3" presented in MoveIt tutorials, move_group_interface_tutorial.cpp only given the quaternion, I am so doubt that how can compute complete infromation of a joint only with this.
Cross-posted: ros-planning/moveit_tutorials#439.