Click or drag to resize

MeshCreateBooleanSplit Method (IEnumerableMesh, IEnumerableMesh, MeshBooleanOptions, Result)

Splits a set of meshes with another set.

Namespace:  Rhino.Geometry
Assembly:  RhinoCommon (in RhinoCommon.dll)
Since: 5.0
Syntax
public static Mesh[] CreateBooleanSplit(
	IEnumerable<Mesh> meshesToSplit,
	IEnumerable<Mesh> meshSplitters,
	MeshBooleanOptions options,
	out Result result
)

Parameters

meshesToSplit
Type: System.Collections.GenericIEnumerableMesh
A list, an array, or any enumerable set of meshes to be split. If this is null, null will be returned.
meshSplitters
Type: System.Collections.GenericIEnumerableMesh
A list, an array, or any enumerable set of meshes that cut. If this is null, null will be returned.
options
Type: Rhino.GeometryMeshBooleanOptions
The boolean option instance, or null.
result
Type: Rhino.CommandsResult
A value indicating success, or cancel, or failure, or nothing.

Return Value

Type: Mesh
A new mesh array, or null on error.
See Also