The plugin does work in 1.2.1, but generates a deprecation warning at paths2openscad.py line 1062:
matNew = matCurrent * Transform(node.get("transform"))
needs to instead be
matNew = matCurrent @ Transform(node.get("transform"))
to eliminate the red warning. the @ in this deprecation is an improvement over the old multiplication routine, by making matrix multiplication explicit. See PEP-465 for more details.
The plugin does work in 1.2.1, but generates a deprecation warning at
paths2openscad.pyline 1062:needs to instead be
to eliminate the red warning. the
@in this deprecation is an improvement over the old multiplication routine, by making matrix multiplication explicit. See PEP-465 for more details.