This commit is contained in:
Sébastien Loriot 2024-03-05 13:04:14 +01:00
parent 0abf0319d9
commit 0f532d78e4
1 changed files with 1 additions and 1 deletions

View File

@ -331,7 +331,7 @@ bool is_leaf = orthtree.is_leaf(child);
for (Octree::Traits::Node_data_element& e : octree.data(child)) { for (Octree::Traits::Node_data_element& e : octree.data(child)) {
// Using a pointmap is necessary when using a Point_set_3. // Using a pointmap is necessary when using a Point_set_3.
Point& p = points.point(e); Point& p = points.point(e);
// If the orthtree is used with a std::vector<Point>, Node_data_element is identical to Point. // If the orthtree is used with a std::vector<Point>, Node_data_element is identical to Point.
// Point& p = e; // Point& p = e;
... ...