Skip to content

Commit

Permalink
Remove leaves method
Browse files Browse the repository at this point in the history
  • Loading branch information
JacksonCampolattaro committed Aug 20, 2020
1 parent e22430c commit 91bdbe1
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions Octree/include/CGAL/Octree.h
Expand Up @@ -713,18 +713,6 @@ class Octree {
}
}

// TODO: These helper methods haven't been properly integrated yet

void leaves(Node &node, std::queue<Node *> &output) {

if (node.is_leaf()) {
output.push(&node);
} else {
for (int i = 0; i < 7; ++i) {
leaves(node[i], output);
}
}
}

}; // end class Octree

Expand Down

0 comments on commit 91bdbe1

Please sign in to comment.