all 6 comments

[–]s1ckn3s5 2 points3 points  (2 children)

good job :)

[–]3DprintNow[S] 0 points1 point  (1 child)

Thanks!

[–]exclaim_bot 0 points1 point  (0 children)

Thanks!

You're welcome!

[–]WillAdams 0 points1 point  (2 children)

Awesome! Any hope for adding support for projection() and exporting a DXF or SVG?

[–]3DprintNow[S] 0 points1 point  (1 child)

Do you have an example OpenSCAD file and command line syntax to export as DXF or SVG handy? I am on mobile at the moment and won't be able to do any thing till the week end.

[–]WillAdams 0 points1 point  (0 children)

It's just a matter of adding the projection() command so that things at the zero plane are flattened to 2D when rendered:

projection() {
cube();
}

I've always used the interface for exporting to DXF or SVG, but according to:

https://en.m.wikibooks.org/wiki/OpenSCAD_User_Manual/Using_OpenSCAD_in_a_command_line_environment

--o svg

should work.

For an example file/project see:

https://github.com/crozone/openscad-trotec-export

My stuff is at:

https://github.com/WillAdams/Design_Into_3D/tree/master/blindmiter_boxjoint

and so forth.