Description:

Combines two or more breps into one. A merge is like a boolean union that keeps the inside pieces. This function creates non-manifold Breps which in general are unusual in Rhino. You may want to consider using JoinBreps or CreateBooleanUnion functions instead.

Syntax:
public static Brep MergeBreps(
IEnumerable<Brep> brepsToMerge,
Double tolerance
)
Parameters:
  • brepsToMerge
  • Type: IEnumerable<Brep>
  • must contain more than one Brep.
  • tolerance
  • Type: System.Double
  • the tolerance to use when merging.
Returns:
Type: Brep
Single merged Brep on success. Null on error.
Available since:
5.0

MergeBreps method

Class:  Rhino.Geometry.Brep

Nothing found