From: Debian Science Team Date: Thu, 10 Aug 2023 14:23:24 +0000 (+0200) Subject: fix_mesh3_internal X-Git-Tag: archive/raspbian/2019.2.0_git20200924.c27eb18+dfsg1-10+rpi1^2~5 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=34160d9f89e84d398f64bf927e364ff64826cb1d;p=mshr.git fix_mesh3_internal =================================================================== Gbp-Pq: Name fix_mesh3_internal.patch --- 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