CreateSolid

Hi all,
I don’t see an equivalent of the Rhino native CreateSolid command in Grasshopper (if it is there somewhere I missed it) - I suppose I can call up the Rhino command via a Python script - can someone remind me how to execute Rhino native commands inside a script component in GH? I’d be feeding it a collection of breps, they will be in a tree with the breps to be used for each create solid operation on a the same branch.
TIA!

Boundary Volume ? (Intersect–>Shape–>Boundary Volume)

3 Likes

Can’t you just use this?
https://developer.rhino3d.com/api/RhinoCommon/html/M_Rhino_Geometry_Brep_CreateSolid.htm

1 Like

Yes exactly


CreateSolid really very useful and create quick section

Oh… yeah. Thanks guys - don’t know why I was looking in the Surface section and forgot to look in the Intersect section… I suppose that the GH component calls the RhinoCommon Brep.CreateSolid in the background, but I’ll try with a Python script component, I might be able to control a few less-than-optimal outcomes that way.