Skip to content

Commit

Permalink
Update straight_skeleton_2.py
Browse files Browse the repository at this point in the history
  • Loading branch information
romanarust committed Sep 18, 2024
1 parent 32e30dc commit f6490b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compas_cgal/straight_skeleton_2.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]:
Expand Down

0 comments on commit f6490b1

Please sign in to comment.