From 1ee73d70a97ef1f5b751f2dae5b6a7a84d66f6b7 Mon Sep 17 00:00:00 2001 From: Jackson Campolattaro Date: Tue, 14 Jul 2020 18:34:24 -0400 Subject: [PATCH] Flesh out the algorithm's outline --- Octree/include/CGAL/Octree.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Octree/include/CGAL/Octree.h b/Octree/include/CGAL/Octree.h index a96dcc792b3..98ee480fad8 100644 --- a/Octree/include/CGAL/Octree.h +++ b/Octree/include/CGAL/Octree.h @@ -453,12 +453,14 @@ private: // functions : // Make room for the new point if necessary if (out.size() == out.capacity()) { - // Find the location of the furthest point in the list - // Remove the furthest point } // Add the point to the list + // TODO + + // Sort the list (for next time) + // TODO // Update the distance largest_radius_squared_found = new_distance_squared;