Skip to content

Commit

Permalink
fix svg transform bug
Browse files Browse the repository at this point in the history
  • Loading branch information
mikedh committed Feb 26, 2025
1 parent 9f9ee8f commit 7994d70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trimesh/path/exchange/svg_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def element_transform(e, max_depth=10):
("{*}circle", "{*}rect", "{*}line", "{*}polyline", "{*}polygon")
):
shapes.append(
(shape.tag.rsplit("}", 1)[-1], shape.attrib, element_transform(element))
(shape.tag.rsplit("}", 1)[-1], shape.attrib, element_transform(shape))
)

try:
Expand Down

0 comments on commit 7994d70

Please sign in to comment.