一、geometry_msgs/Pose 消息类型
# A representation of pose in free space, composed of position and orientation.
# 在*空间中姿态的代表,包括位置和朝向
Point position
Quaternion orientation
其中:
1.geometry_msgs/Point
# This contains the position of a point in free space
# 在*空间中的位置
float64 x
float64 y
float64 z
2.geometry_msgs/Quaternion
# This represents an orientation in free space in quaternion form.
# 用四元数代表在*空间中的朝向
float64 x
float64 y
float64 z
float64 w