Export every object as one file - SLS prerequisite for using Rhino

I would like to switch from Fusion to Rhino for placing and STL export in preparation for SLS printing. I however found no quick solution to export every object as one STL file. This though is import since thermal circumstances require e.g. to sinter inner parts first. Exported as one STL file with all the object inside gives the software - there is also a slicer software in between - no way to distinguish the single parts. Is there a quick solution? If not maybe you might consider putting this functionality in your export mechanism as Fusion already has (export one single file/ every object as a single file).

That seems like a bizarre dealbreaker. That would not take long to script up, if someone doesn’t already have one.

I absolutely agree, thought so. Who has and how to use?

Here are three…

BatchExportSTLByObjDefault.py (1.2 KB)

Exports selected objects as a single STL file per object
using the default or most recently used STL export settings

BatchExportSTLByObjWSett.py (3.9 KB)

Exports one STL file per object selected, export folder is same as current
folder if file has been saved; otherwise, choice of file name/location.
Choice of one of four “standard” settings for export, inch or metric.

BatchExportSTLByObjWFixedSettingsPlus.py (1.9 KB)

Exports one STL file per object selected, export folder is same as current
folder if file has been saved; otherwise, choice of file name/location
This one has just one hard-coded fixed setting which you can modify yourself
in the script file with a text editor and save.

1 Like

Thank you very much!