Click or drag to resize

CurveCreateBooleanDifference Method (Curve, IEnumerableCurve)

Note: This API is now obsolete.

Calculates the boolean difference between a closed planar curve, and a list of closed planar curves. Note, curves must be co-planar.

Namespace:  Rhino.Geometry
Assembly:  RhinoCommon (in RhinoCommon.dll)
Since: 5.0
Syntax
[ObsoleteAttribute("Use version that takes tolerance as input")]
public static Curve[] CreateBooleanDifference(
	Curve curveA,
	IEnumerable<Curve> subtractors
)

Parameters

curveA
Type: Rhino.GeometryCurve
The first closed, planar curve.
subtractors
Type: System.Collections.GenericIEnumerableCurve
curves to subtract from the first closed curve.

Return Value

Type: Curve
Result curves on success, empty array if no difference could be calculated.
See Also