Skip to content
Snippets Groups Projects
Commit 5408eaf7 authored by Sergi Hernandez's avatar Sergi Hernandez
Browse files

Added 0.25 to max_radius

parent f7122d8f
No related branches found
No related tags found
1 merge request!7Cleaned up the code:
......@@ -257,8 +257,8 @@ base_local_planner::Trajectory AckermannPlanner::find_best_path(geometry_msgs::P
for(double angle=0;angle<2*3.14159;angle+=0.1)
{
geometry_msgs::Point new_point;
new_point.x=max_radius*cos(angle);
new_point.y=max_radius*sin(angle);
new_point.x=(max_radius+0.25)*cos(angle);
new_point.y=(max_radius+0.25)*sin(angle);
circular_footprint.push_back(new_point);
}
do{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment