14 lines
199 B
Protocol Buffer
14 lines
199 B
Protocol Buffer
|
syntax = "proto2";
|
||
|
package gazebo.msgs;
|
||
|
|
||
|
/// \ingroup gazebo_msgs
|
||
|
/// \interface PointCloud
|
||
|
/// \brief A point cloud
|
||
|
|
||
|
import "vector3d.proto";
|
||
|
|
||
|
message PointCloud
|
||
|
{
|
||
|
repeated Vector3d points = 1;
|
||
|
}
|