Skip to content

Commit

Permalink
bugfix for handling of elipses in importSVG
Browse files Browse the repository at this point in the history
  • Loading branch information
5263 committed Jan 3, 2013
1 parent cf07e51 commit d374054
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Mod/Draft/importSVG.py
Expand Up @@ -887,7 +887,8 @@ def startElement(self, name, attrs):
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)
Expand Down

0 comments on commit d374054

Please sign in to comment.