We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a028c91 commit f688e32Copy full SHA for f688e32
models/include/cloe/component/lane_boundary.hpp
@@ -56,18 +56,18 @@ class LaneBoundary : public Confable {
56
CONFABLE_FRIENDS(LaneBoundary)
57
58
public:
59
- int id;
60
- int prev_id;
61
- int next_id;
62
- double dx_start;
63
- double dy_start;
64
- double heading_start;
65
- double curv_hor_start;
66
- double curv_hor_change;
67
- double dx_end;
68
- double exist_prob;
69
- Type type;
70
- Color color;
+ int id{-1};
+ int prev_id{-1};
+ int next_id{-1};
+ double dx_start{0};
+ double dy_start{0};
+ double heading_start{0};
+ double curv_hor_start{0};
+ double curv_hor_change{0};
+ double dx_end{0};
+ double exist_prob{0};
+ Type type{Type::Unknown};
+ Color color{Color::Unknown};
71
72
std::vector<Eigen::Vector3d> points;
73
};
0 commit comments