Click or drag to resize

IntersectionCurveBrepFace Method

Intersects a curve with a Brep face.

Namespace:  Rhino.Geometry.Intersect
Assembly:  RhinoCommon (in RhinoCommon.dll)
Since: 5.0
Syntax
public static bool CurveBrepFace(
	Curve curve,
	BrepFace face,
	double tolerance,
	out Curve[] overlapCurves,
	out Point3d[] intersectionPoints
)

Parameters

curve
Type: Rhino.GeometryCurve
A curve.
face
Type: Rhino.GeometryBrepFace
A brep face.
tolerance
Type: SystemDouble
Fitting and near miss tolerance.
overlapCurves
Type: Rhino.GeometryCurve
A overlap curves array argument. This out reference is assigned during the call.
intersectionPoints
Type: Rhino.GeometryPoint3d
A points array argument. This out reference is assigned during the call.

Return Value

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