Hello, I am trying to replicate the first example shown here of the Skeleton Decomposition in compas_singular.
My first error looks like so:
File "/Users/selinabitting/git/compas_singular/examples/000_skeleton.py", line 17, in <module> mesh = boundary_triangulation(outer_boundary, inner_boundaries, polyline_features, point_features, src='numpy') TypeError: boundary_triangulation() got an unexpected keyword argument 'src'
I attempted to address the error by deleting ‘src=‘numpy’’ and the resultant skeleton decomposition looks like the photo in this question. I’m unsure how to resolve the issue, but my goal is to replicate the expected results of the example.
Thank you!