RhinoCommon API
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
public static bool CurveBrep( Curve curve, Brep brep, double tolerance, double angleTolerance, out double[] t )
Public Shared Function CurveBrep ( curve As Curve, brep As Brep, tolerance As Double, angleTolerance As Double, <OutAttribute> ByRef t As Double() ) As Boolean
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: BooleanTrue on success, false on failure.