Hi everybody. I have a strange issue when extruding a dxf file: entities
after extrusion are extremely simplified, I mean they consists of very few
polygons. No idea what I'm doing wrong
I've attached both dxf and scad file for easy reproduce (or deny) my issue
on your machines:
test.scad http://forum.openscad.org/file/n12336/test.scad
test.dxf http://forum.openscad.org/file/n12336/test.dxf
Thanks in advance for your replies!
dxf is created in LibreCAD and in QCAD, same effect.
http://forum.openscad.org/file/n12336/wtf.png
--
View this message in context: http://forum.openscad.org/dxf-extrusion-issue-tp12336.html
Sent from the OpenSCAD mailing list archive at Nabble.com.
Addidtional info:
I've created dxf using 'polylines' tool in LibreCAD and then I used Modify
-> Round on edges.
--
View this message in context: http://forum.openscad.org/dxf-extrusion-issue-tp12336p12337.html
Sent from the OpenSCAD mailing list archive at Nabble.com.
Hi,
The problem is that OpenSCAD doesn’t support POLYLINES which is a mixture of arc and line segments. We treat each element of a polyline as a line segment. You can work around this in LibreCAD by using the “explode” function to break apart the design into separate elements.
Improving DXF import is a larger issue, see https://github.com/openscad/openscad/wiki/Project%3A-Improve-DXF-import-and-export
-Marius
Thank you kintel.
--
View this message in context: http://forum.openscad.org/dxf-extrusion-issue-tp12336p12339.html
Sent from the OpenSCAD mailing list archive at Nabble.com.
I also created an issue on this, in case someone fixes it independently of the bigger DXF project:
https://github.com/openscad/openscad/issues/1307
-Marius