-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CDT_3 - DT3 assertion #8811
Comments
Same issue with the remeshed version of snowflake surface... snowflake_50mm_remeshed.zip |
Same issue with Base.zip |
"Note that without using params::face_patch_map, it works" Do you mean if you really simplify coplanar patches? or simply using the triangle mesh? |
I mean using the triangle mesh, without |
OK then I guess the next thing to try is simply the mesh using remesh_almost_planar_faces and see if it crashes with no face map |
using this code PMP::remesh_planar_patches(mesh, mesh2,
params::edge_is_constrained_map(eif).face_patch_map(fpmap).cosine_of_maximum_angle(1.),
params::face_patch_map(fpmap2).do_not_triangulate_faces(true));
auto ccdt = CGAL::make_conforming_constrained_Delaunay_triangulation_3(mesh2,
CGAL::parameters::face_patch_map(fpmap2)); with the np |
fixed by: dccd25e |
The issue was that the snowflake (once the "patches" are detected) has patches with internal boundaries. And the code dealing with multiple polylines for a given patch was buggy (see the tiny patch at dccd25e). Now it works as expected: Screencast_20250402_210640.webm(Note that it was recorded with non-optimized Debug version of CGAL Lab, with even ASAN and UBSAN.) |
Those are fixed as well. The issue was the faces with holes: all the boundaries of those faces were taken as the boundary of a face without hole. And then there were overlapping faces. The commit dccd25e fixed that. |
At commit 16c57e8 in PR #8186.
Running example
conforming_constrained_Delaunay_triangulation_3_fpmap.exe Data/data/meshes/snowflake_50mm.off
runs into an assertion in Delaunay_triangulation_3 (
side_of_oriented_sphere()
would returnNEGATIVE
)Note that without using
params::face_patch_map
, it worksThe text was updated successfully, but these errors were encountered: