Skip to content

Commit

Permalink
Fix polygons not clearing (#72)
Browse files Browse the repository at this point in the history
* Add behavior tree to navigate to start before starting fields navigation

* snake case

* comments

* rviz visualization for demo

* Update rviz_config.rviz

* Linting and add to other demo

* Fix polygons not clearing, credit to tonynajjar

---------

Co-authored-by: Marc Morcos <30278842+MarcM0@users.noreply.github.com>
  • Loading branch information
Marc-Morcos and Marc-Morcos authored Aug 19, 2024
1 parent bb0a0b6 commit 4a2b760
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions opennav_coverage_bt/src/compute_complete_coverage_path.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ void ComputeCoveragePathAction::on_tick()
// Convert from vector of Polygons to coverage sp. message
std::vector<geometry_msgs::msg::Polygon> polys;
getInput("polygons", polys);
goal_.polygons.clear();
goal_.polygons.resize(polys.size());
for (unsigned int i = 0; i != polys.size(); i++) {
for (unsigned int j = 0; j != polys[i].points.size(); j++) {
Expand Down

0 comments on commit 4a2b760

Please sign in to comment.