fixed syntax error in OpenSCADFeatures.py

This commit is contained in:
Sebastian Hoogen 2013-09-21 08:56:11 +02:00 committed by Yorik van Havre
parent 76e06c801f
commit 3534709fb8

View File

@ -291,7 +291,7 @@ class GetWire:
def execute(self, fp):
if fp.Base:
#fp.Shape=fp.Base.Shape.Wires[0]
fp.Shape=Part.Wire(fp.Shape=fp.Base.Shape.Wires[0]) # works with 0.13 stable
fp.Shape=Part.Wire(fp.Base.Shape.Wires[0]) # works with 0.13 stable
#sh = fp.Base.Shape.Wires[0].copy; sh.transformSahpe(fp.Base.Shape.Placement.toMatrix()); fp.Shape = sh #untested
class Frustum: