From 0a876e18c9d80e5caa551ade02bce35cfc5d0751 Mon Sep 17 00:00:00 2001 From: Sebastian Hoogen Date: Thu, 3 Jan 2013 14:45:52 +0100 Subject: [PATCH] bugfix for handling of elipses in importSVG --- src/Mod/Draft/importSVG.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Mod/Draft/importSVG.py b/src/Mod/Draft/importSVG.py index 5bf9de8591..74b98f1faf 100644 --- a/src/Mod/Draft/importSVG.py +++ b/src/Mod/Draft/importSVG.py @@ -887,7 +887,8 @@ class svgHandler(xml.sax.ContentHandler): rot90=FreeCAD.Matrix(0,-1,0,0,1,0) #90 m3=m3.multiply(rot90) m3.move(c.multiply(-1)) - sh.transform(m3) + sh.transformShape(m3) + #sh = sh.transformGeometry(m3) if self.fill: sh = Part.Wire([sh]) sh = Part.Face(sh)