Hello dear community,
Now I am developing a plugin for Rhino.
I am trying to create solid body by extruding open surface. And this is where I catch a problem.
My c# code:
var brepObj = doc.Objects.GetObjectList(new ObjectEnumeratorSettings {NormalObjects = true}).First();
brepObj.Highlight(true);
brepObj.Select(true);
RhinoApp.RunScript("_ExtrudeSrf 0.15", true);
The extrude works fine from Rhino UI when I set Solid parameter to “Yes”, but I can`t figure out how to do the same in code.
Any suggestions are welcome. Thanks in advance.
Kind regards,
Vitaliy.