15 lines
234 B
Protocol Buffer
15 lines
234 B
Protocol Buffer
|
syntax = "proto2";
|
||
|
package gazebo.msgs;
|
||
|
|
||
|
/// \ingroup gazebo_msgs
|
||
|
/// \interface CylinderGeom
|
||
|
/// \brief Information about a cylinder geometry
|
||
|
|
||
|
|
||
|
message CylinderGeom
|
||
|
{
|
||
|
required double radius = 1;
|
||
|
required double length = 2;
|
||
|
}
|
||
|
|