Skip to content
Snippets Groups Projects
Commit d61637c5 authored by Joaquim Casals Buñuel's avatar Joaquim Casals Buñuel
Browse files

Added conversion of laser_data->theta to radians

parent 465d0902
No related branches found
No related tags found
1 merge request!1Resolve "icp: develop matching tools"
......@@ -27,6 +27,9 @@ public:
++i;
}
for(int i = 0; i < num_rays; ++i){
laser_data->theta[i] = laser_data->theta[i] * 0.0175;
}
laser_data->min_theta = laser_data->theta[0];
laser_data->max_theta = laser_data->theta[num_rays-1];
......
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