BrepJoinBreps Method (IEnumerableBrep, Double) |
Joins the breps in the input array at any overlapping edges to form
as few as possible resulting breps. There may be more than one brep in the result array.
Namespace:
Rhino.Geometry
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 5.0
Syntax public static Brep[] JoinBreps(
IEnumerable<Brep> brepsToJoin,
double tolerance
)
Public Shared Function JoinBreps (
brepsToJoin As IEnumerable(Of Brep),
tolerance As Double
) As Brep()
Parameters
- brepsToJoin
- Type: System.Collections.GenericIEnumerableBrep
A list, an array or any enumerable set of breps to join. - tolerance
- Type: SystemDouble
3d distance tolerance for detecting overlapping edges.
Return Value
Type:
BrepNew joined breps on success, null on failure.
See Also