File tree Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -833,18 +833,27 @@ message LaneBoundary
833833 //
834834 enum Dash
835835 {
836+ // The current state of the dash alternation is not known (must
837+ // not be used in ground truth).
838+ //
839+ DASH_UNKNOWN = 0 ;
840+
841+ // Other (unspecified but known) type of dash alternation state.
842+ //
843+ DASH_OTHER = 1 ;
844+
836845 // The current \c BoundaryPoint indicates the start of a dash.
837846 //
838- DASH_START = 0 ;
847+ DASH_START = 2 ;
839848
840849 // The current \c BoundaryPoint is located on a dash of a dashed
841850 // line. This enables a dash to continue across multiple points.
842851 //
843- DASH_CONTINUE = 1 ;
852+ DASH_CONTINUE = 3 ;
844853
845854 // The current \c BoundaryPoint indicates the end of a dash.
846855 //
847- DASH_END = 2 ;
856+ DASH_END = 4 ;
848857 }
849858 }
850859
You can’t perform that action at this time.
0 commit comments