Export a separate STL for each object in a STEP file
Open
question
- Dominant language
- Python
- Stars
- 5.8k
- Forks
- 541
- Avg merge
- 3d 2h
- Merged PRs (30d)
- 5
Description
I'm new to CadQuery, trying to transition from FreeCAD to carry out some modelling automation/operations.
I've managed to load a STEP file, and export it as an STL:
```py
result = cq.importers.importStep("data/" + step_file)
cq.exporters.export(result, "data/" + stl)
```
What I couldn't quite find on the documentation is whether it is also possible to export an STL for each shape/object individually? E.g. if the STEP consists of 3 cubes, I should get 3 separate STLs.
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.