Splits a brep. A brep can be either a surface with a single face or a polysurface.
Rhino.SplitBrep (strBrep, strCutter [, blnDelete])
strBrep |
Required. String. The identifier of the brep object to split. |
strCutter |
Required. String. The identifier of the brep object to split with. |
blnDelete |
Optional. Boolean. Delete input brep. If omitted, the input brep will not be deleted (False). |
Array |
The identifiers of the new brep objects if successful. |
Null |
If not successful, or on error. |
Dim strBrep, strCutter
strBrep = Rhino.GetObject("Select brep to split", 24)
strCutter = Rhino.GetObject("Select cutting brep", 24)
Rhino.SplitBrep strBrep, strCutter