Closed jamesmckownbishop closed 2 years ago
Simple Inkscape Scripting is merely invoking the reverse
method provided by Inkscape extension API, inkex
, which implies that this is a bug in inkex
. I submitted a bug report to Inkscape:
https://gitlab.com/inkscape/extensions/-/issues/445
As there's nothing more I can do myself, I'm closing this issue. Thanks for the bug report.
I can create a path with a gap in it like so:
path_1 = path([Move(64, 64), Line(64, 128), Move(64, 196), Line(64, 256)])
If I reverse such a path, it no longer has a gap:
How can I reverse a path but preserve the gap?
Here is a screenshot of the result of those two snippets:
Thank you for a sweet API!