Click or drag to resize

IntersectionCurveBrep Method (Curve, Brep, Double, Double, Double)

Intersect a curve with a Brep. This function returns the intersection parameters on the curve.

Namespace:  Rhino.Geometry.Intersect
Assembly:  RhinoCommon (in RhinoCommon.dll)
Since: 6.0
Syntax
public static bool CurveBrep(
	Curve curve,
	Brep brep,
	double tolerance,
	double angleTolerance,
	out double[] t
)

Parameters

curve
Type: Rhino.GeometryCurve
Curve.
brep
Type: Rhino.GeometryBrep
Brep.
tolerance
Type: SystemDouble
Absolute tolerance for intersections.
angleTolerance
Type: SystemDouble
Angle tolerance in radians.
t
Type: SystemDouble
Curve parameters at intersections.

Return Value

Type: Boolean
True on success, false on failure.
See Also