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

This commit is contained in:
Ecstasy-EC
2021-12-23 23:11:23 +08:00
parent 5b5f5e33cf
commit c244f810c6

View File

@@ -221,7 +221,7 @@ void points_cache_collect()
{
PointVector 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;