BIM: Fix imports of Python importers

This commit is contained in:
Chris Mayo
2024-11-04 19:24:27 +00:00
committed by Yorik van Havre
parent 4c50f29442
commit 04eb73bea4
4 changed files with 6 additions and 6 deletions

View File

@@ -608,7 +608,7 @@ def removeCurves(shape,dae=False,tolerance=5):
with faceted segments. If dae is True, DAE triangulation options are used'''
import Mesh
if dae:
import importDAE
from importers import importDAE
t = importDAE.triangulate(shape.cleaned())
else:
t = shape.cleaned().tessellate(tolerance)