Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(mission_planner): fix marker color #6458

Merged
merged 1 commit into from
Feb 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -212,11 +212,11 @@
const std_msgs::msg::ColorRGBA cl_route =
tier4_autoware_utils::createMarkerColor(0.8, 0.99, 0.8, 0.15);
const std_msgs::msg::ColorRGBA cl_ll_borders =
tier4_autoware_utils::createMarkerColor(0.2, 0.4, 0.4, 0.05);
tier4_autoware_utils::createMarkerColor(1.0, 1.0, 1.0, 0.999);

Check warning on line 215 in planning/mission_planner/src/lanelet2_plugins/default_planner.cpp

View check run for this annotation

Codecov / codecov/patch

planning/mission_planner/src/lanelet2_plugins/default_planner.cpp#L215

Added line #L215 was not covered by tests
const std_msgs::msg::ColorRGBA cl_end =
tier4_autoware_utils::createMarkerColor(0.2, 0.2, 0.4, 0.05);
const std_msgs::msg::ColorRGBA cl_goal =
tier4_autoware_utils::createMarkerColor(1.0, 1.0, 1.0, 0.999);
tier4_autoware_utils::createMarkerColor(0.2, 0.4, 0.4, 0.05);

visualization_msgs::msg::MarkerArray route_marker_array;
insert_marker_array(
Expand Down
Loading