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 <tomoya.kimura@tier4.jp>

Signed-off-by: tomoya.kimura <tomoya.kimura@tier4.jp>
  • Loading branch information
tkimura4 authored Dec 26, 2022
1 parent 95731ff commit 8f6ae1b
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -756,9 +756,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 8f6ae1b

Please sign in to comment.