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 @@ -825,18 +825,27 @@ message LaneBoundary
825825 //
826826 enum Dash
827827 {
828+ // The current state of the dash alternation is not known (must
829+ // not be used in ground truth).
830+ //
831+ DASH_UNKNOWN = 0 ;
832+
833+ // Other (unspecified but known) type of dash alternation state.
834+ //
835+ DASH_OTHER = 1 ;
836+
828837 // The current \c BoundaryPoint indicates the start of a dash.
829838 //
830- DASH_START = 0 ;
839+ DASH_START = 2 ;
831840
832841 // The current \c BoundaryPoint is located on a dash of a dashed
833842 // line. This enables a dash to continue across multiple points.
834843 //
835- DASH_CONTINUE = 1 ;
844+ DASH_CONTINUE = 3 ;
836845
837846 // The current \c BoundaryPoint indicates the end of a dash.
838847 //
839- DASH_END = 2 ;
848+ DASH_END = 4 ;
840849 }
841850 }
842851
You can’t perform that action at this time.
0 commit comments