Apollo 10.0
自动驾驶开放平台
geometry.proto
浏览该文件的文档.
1syntax = "proto2";
2
3package apollo.external_command;
4
5message Point {
6 // x coordinate.
7 required double x = 1;
8 // y coordinate.
9 required double y = 2;
10}
11
12message 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.
24message RoiPolygon {
25 repeated Point point = 1;
26}
syntax
Definition geometry.proto:1