Skip to content

deprecation warning (inkscape 1.2.1) #23

Description

@ofloveandhate

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.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions