Add nearest_k_neighbours_recursive private method stub

This commit is contained in:
Jackson Campolattaro 2020-07-13 14:02:27 -04:00
parent c3c299d588
commit ab6ecb6bbb
1 changed files with 4 additions and 0 deletions

View File

@ -418,6 +418,10 @@ private: // functions :
reassign_points(node, node.value().begin(), node.value().end(), center);
}
void nearest_k_neighbours_recursive() {
}
}; // end class Octree
} // namespace Octree