Set Path Center. Depends on mlampert's rotation vis

This commit is contained in:
sliptonic
2018-05-07 09:37:59 -05:00
committed by Yorik van Havre
parent ac155d7360
commit c4bd67724c

View File

@@ -73,7 +73,7 @@ class ObjectDressup:
def _stripArcs(self, path, d):
'''converts all G2/G3 commands into G1 commands'''
newcommandlist = []
currLocation = {}
currLocation = {'X':0,'Y':0,'Z':0}
for p in path:
if p.Name in arccommands:
@@ -131,6 +131,7 @@ class ObjectDressup:
path = Path.Path(newcommandlist)
obj.Path = path
obj.Path.Center = FreeCAD.Vector(0, 0, 0-obj.radius.Value)
class ViewProviderDressup: