Hi! I have multiple buildings in one file, and I’d like to export them into individual files, each containing one building. Is that feasible in Rhinoscript?
Many thanks!
Hi! I have multiple buildings in one file, and I’d like to export them into individual files, each containing one building. Is that feasible in Rhinoscript?
Many thanks!
Sure, just script the Export command, which exports selected objects.
– Dale
well… I got 500 individual polysurface (export to 500 .obj file) and I don’t want to do it mannually…
Write a script (either RhinoScript or Python) that follows this algorithm:
_-Export
command (you’ll need to cook up a file name)– Dale
Thank you for the clear pipeline!