Fixed bug in not cleaning the points cache array of removed points.

main
Ecstasy-EC 2021-12-23 23:11:23 +08:00
parent 5b5f5e33cf
commit c244f810c6
1 changed files with 1 additions and 1 deletions

View File

@ -221,7 +221,7 @@ void points_cache_collect()
{ {
PointVector points_history; PointVector points_history;
ikdtree.acquire_removed_points(points_history); ikdtree.acquire_removed_points(points_history);
for (int i = 0; i < points_history.size(); i++) _featsArray->push_back(points_history[i]); // for (int i = 0; i < points_history.size(); i++) _featsArray->push_back(points_history[i]);
} }
BoxPointType LocalMap_Points; BoxPointType LocalMap_Points;