Fixed bug in not cleaning the points cache array of removed points.
parent
5b5f5e33cf
commit
c244f810c6
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue