From f6490b156a041e345a1189bdd2beb4335d911c2e Mon Sep 17 00:00:00 2001 From: Romana Rust Date: Wed, 18 Sep 2024 07:15:45 +0200 Subject: [PATCH] Update straight_skeleton_2.py --- src/compas_cgal/straight_skeleton_2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compas_cgal/straight_skeleton_2.py b/src/compas_cgal/straight_skeleton_2.py index 3feadc9..ee3c35c 100644 --- a/src/compas_cgal/straight_skeleton_2.py +++ b/src/compas_cgal/straight_skeleton_2.py @@ -102,7 +102,7 @@ def create_interior_straight_skeleton_with_holes(points, holes) -> Graph: raise ValueError("The normal of the hole should be [0, 0, -1]. The normal of the provided {}-th hole is {}".format(i, normal_hole)) hole = np.asarray(points, dtype=np.float64) H.append(hole) - return graph_from_skeleton_data(straight_skeleton_2.create_interior_straight_skeleton_with_holes(V, H)) + return graph_from_skeleton_data(*straight_skeleton_2.create_interior_straight_skeleton_with_holes(V, H)) def create_offset_polygons_2(points, offset) -> list[Polygon]: