I’m using rhino.compute to calculate a mesh.
How could I convert the 3dm decoded mesh to an STL file?
Currently, I can only save it as a 3dm:
import compute_rhino3d.Grasshopper as gh
import rhino3dm
output = gh.EvaluateDefinition(definition_path, trees)
mesh = output['values'][0]['InnerTree']['{0}'][0]["data"]
mesh = rhino3dm.CommonObject.Decode(json.loads(mesh))
doc = rhino3dm.File3dm()
doc.Objects.AddMesh(mesh)
doc.Write("model.3dm", version=0)
Thank you very much!
You can use
Rhino.RhinoDoc.WriteFile
to write to all file types that rhino conventionally supports for exporting.In this case, I'm using the Rhino 'RunPythonScript' command with the open
ActiveDoc
but in your example, you could usedoc.WriteFile(filepath, write_options)
instead.When you first run this, there is a .stl export dialogue that has export options. This window can be suppressed to the command line with
write_options.SuppressDialogBoxes = True
.Or you can check the 'Always use these settings. Do not show this dialogue again.' option and it will not interrupt export in the future.
Your example suggests you may be working in a headless environment so I'm not sure how these dialogues would be handled in that scenario.