This commit is contained in:
Sebastien Loriot 2025-09-27 08:32:50 +02:00 committed by GitHub
parent 4176a2a551
commit 9cdaacb7d0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -8,15 +8,15 @@ int main()
{
CGAL::Surface_mesh<CGAL::Epick::Point_3> mesh;
auto f0 = mesh.add_face();
auto f1 = mesh.add_face(); // If this line is commented out, it will not crash.
mesh.add_face();
mesh.remove_face(f0);
auto v0 = mesh.add_vertex();
auto v1 = mesh.add_vertex(); // If this line is commented out, it will not crash.
mesh.add_vertex();
mesh.remove_vertex(v0);
auto e0 = mesh.add_edge();
auto e1 = mesh.add_edge(); // If this line is commented out, it will not crash.
mesh.add_edge();
mesh.remove_edge(edge(e0,mesh));