Performs a Boolean union operation on a set of input meshes. For more details, see the MeshBooleanUnion command in the Rhino help file.
Rhino.MeshBooleanUnion (arrInput [, blnDelete])
arrInput |
Required. Array. The identifiers of the meshes to union. |
blnDelete |
Optional. Boolean. Delete all input objects. The default is to delete all input objects (True). |
Array |
An array containing the identifiers of the newly created objects, if successful. |
Null |
If not successful, or on error. |
Const rhMesh = 32
Dim arrInput
arrInput = Rhino.GetObjects("Select meshes to union", rhMesh)
If IsArray(arrInput) Then
Rhino.MeshBooleanUnion arrInput
End If