pxmlw6n2f/Gazebo_Distributed_TCP/gazebo/msgs/pose.proto

19 lines
345 B
Protocol Buffer
Raw Permalink Normal View History

2019-03-28 10:57:49 +08:00
syntax = "proto2";
package gazebo.msgs;
/// \ingroup gazebo_msgs
/// \interface Pose
/// \brief Message for a pose
import "vector3d.proto";
import "quaternion.proto";
message Pose
{
optional string name = 1;
optional uint32 id = 2;
required Vector3d position = 3;
required Quaternion orientation = 4;
}