Skip to content

Commit

Permalink
fix build errors in example
Browse files Browse the repository at this point in the history
  • Loading branch information
jlblancoc committed Oct 12, 2024
1 parent 39f2295 commit 5a0629e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions samples/nav_rrt_planning_example/test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ void TestRRT1()
// gridmap.getAsPointCloud( planner_input.obstacles_points );

// Workspace bounding box:
planner_input.world_bbox_min = mrpt::math::TPoint2D(bbox.min.x, bbox.min.y);
planner_input.world_bbox_max = mrpt::math::TPoint2D(bbox.max.x, bbox.max.y);
planner_input.world_bbox_min = {bbox.min.x, bbox.min.y, -M_PI};
planner_input.world_bbox_max = {bbox.max.x, bbox.max.y, +M_PI};

// size_t iters=0;
// Show results in a GUI and keep improving:
Expand Down

0 comments on commit 5a0629e

Please sign in to comment.