BrepCreateBooleanUnion Method (IEnumerableBrep, Double, Boolean) |
Compute the Boolean Union of a set of Breps.
Namespace:
Rhino.Geometry
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 6.0
Syntax public static Brep[] CreateBooleanUnion(
IEnumerable<Brep> breps,
double tolerance,
bool manifoldOnly
)
Public Shared Function CreateBooleanUnion (
breps As IEnumerable(Of Brep),
tolerance As Double,
manifoldOnly As Boolean
) As Brep()
Parameters
- breps
- Type: System.Collections.GenericIEnumerableBrep
Breps to union. - tolerance
- Type: SystemDouble
Tolerance to use for union operation. - manifoldOnly
- Type: SystemBoolean
If true, non-manifold input breps are ignored.
Return Value
Type:
BrepAn array of Brep results or null on failure.
See Also