Skip to content
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

Closed
janetournois opened this issue Mar 28, 2025 · 9 comments
Closed

CDT_3 - DT3 assertion #8811

janetournois opened this issue Mar 28, 2025 · 9 comments
Assignees
Milestone

Comments

@janetournois
Copy link
Member

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 return NEGATIVE)

   CGAL error: assertion violation!
   Expression : false
   File       : C:\Jane\CGAL\cgal-wt\Triangulation_3\include\CGAL/Delaunay_triangulation_3.h
   Line       : 1417

Note that without using params::face_patch_map, it works

@janetournois
Copy link
Member Author

Same issue with the remeshed version of snowflake surface... snowflake_50mm_remeshed.zip
(I tried remeshing to have better edge lengths in input)

@janetournois
Copy link
Member Author

Same issue with Base.zip

@sloriot
Copy link
Member

sloriot commented Apr 1, 2025

"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?

@janetournois
Copy link
Member Author

I mean using the triangle mesh, without face_patch_map

@sloriot
Copy link
Member

sloriot commented Apr 2, 2025

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

@janetournois
Copy link
Member Author

janetournois commented Apr 2, 2025

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 face_patch_map, the crash happens, and without it, it works fine

@lrineau lrineau self-assigned this Apr 2, 2025
lrineau added a commit to lrineau/cgal that referenced this issue Apr 2, 2025
@lrineau
Copy link
Member

lrineau commented Apr 2, 2025

fixed by: dccd25e

@lrineau lrineau closed this as completed Apr 2, 2025
@lrineau
Copy link
Member

lrineau commented Apr 2, 2025

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 return NEGATIVE)

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.)

@lrineau
Copy link
Member

lrineau commented Apr 2, 2025

Same issue with the remeshed version of snowflake surface... snowflake_50mm_remeshed.zip (I tried remeshing to have better edge lengths in input)

Same issue with Base.zip

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.

@lrineau lrineau added this to the 6.1-beta milestone Apr 2, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants