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:
Diffstat (limited to 'io_curve_svg/import_svg.py')
-rw-r--r--io_curve_svg/import_svg.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/io_curve_svg/import_svg.py b/io_curve_svg/import_svg.py
index 740dd817..e114ca33 100644
--- a/io_curve_svg/import_svg.py
+++ b/io_curve_svg/import_svg.py
@@ -1754,7 +1754,8 @@ class SVGGeometrySVG(SVGGeometryContainer):
# Better Inkscape compatibility: match document origin with
# 3D space origin.
if self._node.getAttribute('inkscape:version'):
- document_height = float(self._node.getAttribute('height'))
+ raw_height = self._node.getAttribute('height')
+ document_height = SVGParseCoord(raw_height, 1.0)
matrix = matrix * Matrix.Translation([0.0, -document_height , 0.0])
self._pushMatrix(matrix)