Skip to content

Commit

Permalink
chore(behavior_path_planner): make the line of drivable are bound bol…
Browse files Browse the repository at this point in the history
…der (autowarefoundation#2563)

Signed-off-by: tomoya.kimura <[email protected]>

Signed-off-by: tomoya.kimura <[email protected]>
  • Loading branch information
tkimura4 committed Dec 26, 2022
1 parent bb5ea28 commit 2460c2c
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -717,9 +717,9 @@ void BehaviorPathPlannerNode::publish_steering_factor(const TurnIndicatorsComman

void BehaviorPathPlannerNode::publish_bounds(const PathWithLaneId & path)
{
constexpr double scale_x = 0.1;
constexpr double scale_y = 0.1;
constexpr double scale_z = 0.1;
constexpr double scale_x = 0.2;
constexpr double scale_y = 0.2;
constexpr double scale_z = 0.2;
constexpr double color_r = 0.0 / 256.0;
constexpr double color_g = 148.0 / 256.0;
constexpr double color_b = 205.0 / 256.0;
Expand Down

0 comments on commit 2460c2c

Please sign in to comment.