From 88d2fdef12dc059a30257b1f85e11e577b774828 Mon Sep 17 00:00:00 2001 From: R cqls Date: Sat, 22 Jul 2023 10:05:53 +0200 Subject: [PATCH] Fx to be compliant with CGAL 5.5.2 --- src/straight_skeleton_2.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/straight_skeleton_2.cpp b/src/straight_skeleton_2.cpp index e87d0ad..27b64b8 100644 --- a/src/straight_skeleton_2.cpp +++ b/src/straight_skeleton_2.cpp @@ -63,7 +63,6 @@ void wrap_straight_skeleton_2(jlcxx::Module& cgal) { return *h.defining_contour_edge(); }) // Predicates - .method("has_null_segment", &Halfedge::has_null_segment) .method("has_infinite_time", &Halfedge::has_infinite_time) .method("is_border", &Halfedge::is_border) .method("is_bisector", &Halfedge::is_bisector) @@ -74,7 +73,7 @@ void wrap_straight_skeleton_2(jlcxx::Module& cgal) { ssv // Access Functions .method("id", &Vertex::id) - .method("degree", &Vertex::degree) + // .method("degree", &Vertex::degree) .method("halfedge", [](const Vertex& v) { return *v.halfedge(); }) .method("point", &Vertex::point) ; @@ -89,7 +88,6 @@ void wrap_straight_skeleton_2(jlcxx::Module& cgal) { }) // Queries .method("has_infinite_time", &Vertex::has_infinite_time) - .method("has_null_point", &Vertex::has_null_point) .method("is_contour", &Vertex::is_contour) .method("is_skeleton", &Vertex::is_skeleton) .method("is_split", &Vertex::is_split)