Skip to content

Commit

Permalink
Fixed global plan publishing bug
Browse files Browse the repository at this point in the history
  • Loading branch information
sadanand1120 authored and joydeep-b committed Jan 31, 2023
1 parent 003e824 commit 1ce0436
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/navigation/navigation_main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ void PublishPath() {
path_pub_.publish(path_msg);
}
for (size_t i = 1; i < path.size(); i++) {
visualization::DrawLine(path[i - 1].loc, path[i].loc, 0xFF007F00,
visualization::DrawLine(path[i - 1].loc, path[i].loc, 0x007F00,
global_viz_msg_);
}
Vector2f carrot;
Expand Down

0 comments on commit 1ce0436

Please sign in to comment.