Exported solids using EZDXF are not behaving as expected in AutoCAD using Dynamo for intersection of solids #1295
-
I am working on a project where we generate 3D solids based on polygons with a height and material, export these to DXF so a CAD modeller can make extrusions with Dynamo and calculate volumes using these intersected solids. Filename: Path/ DXF_export_model.dxf"
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The ACIS support of If you need better 3D support you have to use an OpenCascade base library or application like
But now you have different problem, none of the free and open source libraries and applications support ACIS import/export. So you have to use simple mesh based formats like STL or 3MF for import/export. Or you find a way to process BREP or STEP files. None of the solutions is ideal. |
Beta Was this translation helpful? Give feedback.
The ACIS support of
ezdxf
is very basic, don't expect full feature support. You are lucky if get your 3D data into AutoCAD and that's it and there is no advantage over using MESH entities directly.If you need better 3D support you have to use an OpenCascade base library or application like
But now you have different problem, none of the free and open source libraries and applications support ACIS import/export. So you have to use simple mesh based formats like STL or 3MF for import/export. Or you find a way to process BREP or STEP files. None of the solutions is ideal.