From d4c278acd9a884d057490decdb7bc51941edcd5d Mon Sep 17 00:00:00 2001 From: Sven Oesau Date: Mon, 4 Jul 2022 15:13:53 +0200 Subject: [PATCH] fixing namespace errors --- .../Plugins/Point_set/Point_set_shape_detection_plugin.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Polyhedron/demo/Polyhedron/Plugins/Point_set/Point_set_shape_detection_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/Point_set/Point_set_shape_detection_plugin.cpp index 3a731760636..eba7568b0ce 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Point_set/Point_set_shape_detection_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/Point_set/Point_set_shape_detection_plugin.cpp @@ -185,11 +185,11 @@ private: using Face_range = typename SMesh::Face_range; using Neighbor_query = - CGAL::Shape_detection::Triangle_mesh::One_ring_neighbor_query; + CGAL::Shape_detection::Polygon_mesh::One_ring_neighbor_query; using Region_type = - CGAL::Shape_detection::Triangle_mesh::Least_squares_plane_fit_region; + CGAL::Shape_detection::Polygon_mesh::Least_squares_plane_fit_region; using Sorting = - CGAL::Shape_detection::Triangle_mesh::Least_squares_plane_fit_sorting; + CGAL::Shape_detection::Polygon_mesh::Least_squares_plane_fit_sorting; using Region_growing = CGAL::Shape_detection::Region_growing< Face_range, Neighbor_query, Region_type>;