BrepSplitDisjointPieces Method (Brep, ListInt32) |
Separates, or splits, a disjoint Brep into separate Breps.
Namespace:
Rhino.Geometry
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 8.15
Syntaxpublic static Brep[] SplitDisjointPieces(
Brep brep,
out List<int[]> indexMap
)
Public Shared Function SplitDisjointPieces (
brep As Brep,
<OutAttribute> ByRef indexMap As List(Of Integer())
) As Brep()
Parameters
- brep
- Type: Rhino.GeometryBrep
The disjoint Brep to separate. - indexMap
- Type: System.Collections.GenericListInt32
List of integer arrays, one for each result, containing all input Brep face indices that went into making each result.
Note, this can be null.
Return Value
Type:
BrepAn array of Brep pieces if successful, otherwise an empty array if the Brep is not disjoint or on error.
See Also