Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-07-25 07:12:07 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-07-25 07:12:07 +0400
commit1e6477aef52efa5e803df4e3e694ff874b5fbaac (patch)
tree02cd472b439634f243d56ae69e7b04f287004855 /io_curve_svg
parenteafdd1414446de79848adc27380dac244c82bb2e (diff)
switch vector multiply order
Diffstat (limited to 'io_curve_svg')
-rw-r--r--io_curve_svg/import_svg.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/io_curve_svg/import_svg.py b/io_curve_svg/import_svg.py
index d8ae1a8d..04ce6b08 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):
"""