From 34160d9f89e84d398f64bf927e364ff64826cb1d Mon Sep 17 00:00:00 2001 From: Debian Science Team Date: Thu, 10 Aug 2023 16:23:24 +0200 Subject: [PATCH] fix_mesh3_internal =================================================================== Gbp-Pq: Name fix_mesh3_internal.patch --- src/make_multicomponent_mesh_3.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/make_multicomponent_mesh_3.h b/src/make_multicomponent_mesh_3.h index 0d6a2db..8ede9cf 100644 --- a/src/make_multicomponent_mesh_3.h +++ b/src/make_multicomponent_mesh_3.h @@ -37,11 +37,11 @@ void make_multicomponent_mesh_3_impl(C3T3& c3t3, //std::cout << "Number of vertices initially: " << c3t3.triangulation().number_of_vertices() << std::endl; // Initialize c3t3 with points from the special features - CGAL::internal::Mesh_3::C3t3_initializer< + CGAL::Mesh_3::internal::C3t3_initializer< C3T3, MeshDomain, MeshCriteria, - CGAL::internal::Mesh_3::has_Has_features::value > () (c3t3, + CGAL::Mesh_3::internal::has_Has_features::value > () (c3t3, domain, criteria, with_features); @@ -49,7 +49,7 @@ void make_multicomponent_mesh_3_impl(C3T3& c3t3, // std::cout << "Number of vertices after features: " << c3t3.triangulation().number_of_vertices() << std::endl; // Inserts points from all connected components to the mesh - CGAL::internal::Mesh_3::init_c3t3(c3t3, domain, criteria, 0); + CGAL::Mesh_3::internal::init_c3t3(c3t3, domain, criteria, 0); // std::cout << "Number of vertices before meshing: " << c3t3.triangulation().number_of_vertices() << std::endl; // Build mesher and launch refinement process -- 2.30.2