Stl to svg help

I got an stl file I need to convert to svg so I can use on easel any suggestions on how to convert

https://products.aspose.app/cad/conversion/stl-to-svg

1 Like

OpenSCAD is probably the easiest:

https://en.wikibooks.org/wiki/OpenSCAD_User_Manual/STL_Import_and_Export
https://en.wikibooks.org/wiki/OpenSCAD_User_Manual/3D_to_2D_Projection

Example using default projection (which may or may not work for what you want, see the links above) would slice an STL in the same directory as the scad (Open OpenSCAD and save it as something like slice_whatever.scad, in the same directory as whatever.stl):

projection() 
import("whatever.stl");

Hit F6 to render it (Any errors when typing will show in the lower right by default, or if there are issues with the model import)

Then do a file - export - export as SVG.

1 Like

Thankyou so much for info I will give it a shot !!