From 1e6477aef52efa5e803df4e3e694ff874b5fbaac Mon Sep 17 00:00:00 2001 From: Campbell Barton <ideasman42@gmail.com> Date: Mon, 25 Jul 2011 03:12:07 +0000 Subject: [PATCH] switch vector multiply order --- io_curve_svg/import_svg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/io_curve_svg/import_svg.py b/io_curve_svg/import_svg.py index d8ae1a8d6..04ce6b086 100644 --- a/io_curve_svg/import_svg.py +++ b/io_curve_svg/import_svg.py @@ -1007,7 +1007,7 @@ class SVGGeometry: v = Vector((point[0], point[1], 0.0)) - return v * self._context['matrix'] + return self._context['matrix'] * v def getNodeMatrix(self): """ -- GitLab