Apollo
10.0
自动驾驶开放平台
geometry.proto
浏览该文件的文档.
1
syntax
=
"proto2"
;
2
3
package
apollo.external_command;
4
5
message
Point
{
6
// x coordinate.
7
required
double
x = 1;
8
// y coordinate.
9
required
double
y = 2;
10
}
11
12
message
Pose
{
13
// x coordinate.
14
required
double
x = 1;
15
// y coordinate.
16
required
double
y = 2;
17
// Rotation around z axis in Cartesian coordinate system.
18
optional
double
heading = 3;
19
}
20
21
// Region of interest in form of polygon.
22
// If the points of polygon is in anticlockwise, ROI is drivable area; otherwise if
23
// they are in clockwise, ROI is prohibited driving area.
24
message
RoiPolygon
{
25
repeated
Point
point = 1;
26
}
syntax
syntax
Definition
geometry.proto:1
apollo::external_command::Point
Definition
geometry.proto:5
apollo::external_command::Pose
Definition
geometry.proto:12
apollo::external_command::RoiPolygon
Definition
geometry.proto:24
modules
common_msgs
external_command_msgs
geometry.proto