From 13aa60a2aabd88ed64a112e048510dc891fd0e7d Mon Sep 17 00:00:00 2001 From: Jane Tournois Date: Fri, 20 Dec 2024 15:23:16 +0100 Subject: [PATCH] collect face_patch_map via named parameters (bug fix) --- .../CGAL/Polygon_mesh_processing/surface_Delaunay_remeshing.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mesh_3/include/CGAL/Polygon_mesh_processing/surface_Delaunay_remeshing.h b/Mesh_3/include/CGAL/Polygon_mesh_processing/surface_Delaunay_remeshing.h index 7e8d29759a38..e86d312bc754 100644 --- a/Mesh_3/include/CGAL/Polygon_mesh_processing/surface_Delaunay_remeshing.h +++ b/Mesh_3/include/CGAL/Polygon_mesh_processing/surface_Delaunay_remeshing.h @@ -296,7 +296,7 @@ surface_Delaunay_remeshing(const TriangleMesh& tmesh, CGAL::parameters::no_exude()); TriangleMeshOut out; - CGAL::facets_in_complex_3_to_triangle_mesh(c3t3, out); + CGAL::facets_in_complex_3_to_triangle_mesh(c3t3, out, np); return out; }