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
)
Public Shared Function CurveBrepFace (
curve As Curve,
face As BrepFace,
tolerance As Double,
<OutAttribute> ByRef overlapCurves As Curve(),
<OutAttribute> ByRef intersectionPoints As Point3d()
) As Boolean
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:
Booleantrue on success, false on failure.
See Also