• File: thormang3_walking_module_msgs/PoseXYZRPY.msg

  • Message Definition
      float32 x
      float32 y
      float32 z
      float32 roll
      float32 pitch
      float32 yaw
    
  • Description
    This message is developed to define a pose in the 3D space.
    There are x, y, z, roll, pitch, yaw parameters in the message.
    Given x, y, z, roll, pitch and yaw, Transformation Matrix can be calculated as shown below.
      T = translation(x, y, z)     * Rz(yaw)    * Ry(pitch)    * Rx(roll)
    
    • float32 x
         position of x

    • float32 y
         position of y

    • float32 z
         position of z

    • float32 roll
         a rotation angle of x

    • float32 pitch
         a rotation angle of y

    • float32 yaw
        a rotation angle of z