Equivalent turtlesim/Pose and geometry_msgs/Pose
Hello,
I have a question about the Pose message. There art two different Pose :
geometry_msgs/Pose.msg
Point position
Quaternion orientationturtlesim/Pose.msg
float32 x
float32 y
float32 theta
float32 linear_velocity
float32 angular_velocity
I want to know what is the equivalent of turtlesim pose.theta in the geometry pose :
- pose.orientation.z ?
- pose.orientation.w ?
- yaw from euler_from_quaternion(pose.orientation.x, pose.orientation.y, pose.orientation.z, pose.orientation.w) ?
Thank you in advance.