From b45c44dddcd389c3bfc34774961d45727cc5fb99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Tue, 2 Aug 2022 10:38:46 +0200 Subject: [PATCH] add missing parameter --- .../Shape_detection/region_growing_circles_on_point_set_2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shape_detection/examples/Shape_detection/region_growing_circles_on_point_set_2.cpp b/Shape_detection/examples/Shape_detection/region_growing_circles_on_point_set_2.cpp index 65dd4721378..5e1392545fe 100644 --- a/Shape_detection/examples/Shape_detection/region_growing_circles_on_point_set_2.cpp +++ b/Shape_detection/examples/Shape_detection/region_growing_circles_on_point_set_2.cpp @@ -64,7 +64,7 @@ int main(int argc, char** argv) { // Create instances of the classes Neighbor_query and Region_type. Neighbor_query neighbor_query = CGAL::Shape_detection::Point_set::make_k_neighbor_query( - point_set_2); + point_set_2, CGAL::parameters::k_neighbors(k)); Region_type region_type = CGAL::Shape_detection::Point_set::make_least_squares_circle_fit_region( point_set_2,