pxmlw6n2f/Gazebo_Distributed_TCP/gazebo/msgs/vector2d.proto

16 lines
206 B
Protocol Buffer
Raw Normal View History

2019-03-28 10:57:49 +08:00
syntax = "proto2";
package gazebo.msgs;
/// \ingroup gazebo_msgs
/// \interface Vector2d
/// \brief Message for a vector2 double
message Vector2d
{
required double x = 1;
required double y = 2;
}