Skip to content

Commit

Permalink
fix import, OpenSCAD isn't namespace workbench
Browse files Browse the repository at this point in the history
  • Loading branch information
sgrogan authored and wwmayer committed Oct 17, 2020
1 parent 01af171 commit f3bdaaa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Mod/OpenSCAD/OpenSCADFeatures.py
Expand Up @@ -499,8 +499,8 @@ def __init__(self,obj,opname=None,children=None,arguments=None):
def execute(self,fp):
#arguments are ignored
maxmeshpoints = None #TBD: add as property
import Part, freecad.OpenSCAD.OpenSCADUtils
shape = freecad.OpenSCAD.OpenSCADUtils.process_ObjectsViaOpenSCADShape(fp.Document,fp.Children,\
import Part, OpenSCAD.OpenSCADUtils
shape = OpenSCAD.OpenSCADUtils.process_ObjectsViaOpenSCADShape(fp.Document,fp.Children,\
fp.Operation, maxmeshpoints=maxmeshpoints)
if shape:
fp.Shape = shape
Expand Down

0 comments on commit f3bdaaa

Please sign in to comment.