From 06a1925f6f0e1b8e846b93df633fbe6f07b88ab6 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Fri, 18 Mar 2016 15:47:31 +0100 Subject: [PATCH] Forgot to set the halfedge of the face --- BGL/include/CGAL/boost/graph/Euler_operations.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/BGL/include/CGAL/boost/graph/Euler_operations.h b/BGL/include/CGAL/boost/graph/Euler_operations.h index fe39cfd0c0f..a1fec80193b 100644 --- a/BGL/include/CGAL/boost/graph/Euler_operations.h +++ b/BGL/include/CGAL/boost/graph/Euler_operations.h @@ -146,6 +146,8 @@ join_vertex(typename boost::graph_traits::halfedge_descriptor h, set_halfedge(v, gprev, g); // internal::set_constant_vertex_is_border(g, v); + set_halfedge(face(gprev,g),gprev,g); + set_halfedge(face(hprev,g),hprev,g); remove_edge(edge(h, g), g); remove_vertex(v_to_remove, g);