fixing namespace errors

This commit is contained in:
Sven Oesau 2022-07-04 15:13:53 +02:00
parent ab049bb927
commit d4c278acd9
1 changed files with 3 additions and 3 deletions

View File

@ -185,11 +185,11 @@ private:
using Face_range = typename SMesh::Face_range;
using Neighbor_query =
CGAL::Shape_detection::Triangle_mesh::One_ring_neighbor_query<SMesh>;
CGAL::Shape_detection::Polygon_mesh::One_ring_neighbor_query<SMesh>;
using Region_type =
CGAL::Shape_detection::Triangle_mesh::Least_squares_plane_fit_region<Kernel, SMesh>;
CGAL::Shape_detection::Polygon_mesh::Least_squares_plane_fit_region<Kernel, SMesh>;
using Sorting =
CGAL::Shape_detection::Triangle_mesh::Least_squares_plane_fit_sorting<Kernel, SMesh, Neighbor_query>;
CGAL::Shape_detection::Polygon_mesh::Least_squares_plane_fit_sorting<Kernel, SMesh, Neighbor_query>;
using Region_growing = CGAL::Shape_detection::Region_growing<
Face_range, Neighbor_query, Region_type>;