From 4de1090640f18740219399d928109f4476361849 Mon Sep 17 00:00:00 2001 From: Mario Voigt Date: Tue, 2 Jul 2024 21:02:08 +0200 Subject: [PATCH] fix deprecation --- .../fablabchemnitz/another_perspective/another_perspective.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/fablabchemnitz/another_perspective/another_perspective.py b/extensions/fablabchemnitz/another_perspective/another_perspective.py index cf23c89..16d66dd 100644 --- a/extensions/fablabchemnitz/another_perspective/another_perspective.py +++ b/extensions/fablabchemnitz/another_perspective/another_perspective.py @@ -288,7 +288,7 @@ class AnotherPerspective(inkex.EffectExtension): for p in obj.iterfind(".//{http://www.w3.org/2000/svg}path"): absolute_d = str(Path(p.get('d'))) - mat = p.transform * Transform([[1.0, 0.0, 0.0], [0.0, 1.0, 0.0]]) + mat = p.transform @ Transform([[1.0, 0.0, 0.0], [0.0, 1.0, 0.0]]) path = CubicSuperPath(absolute_d) Path(path).transform(mat) absolute_object_path += str(Path(path))