IntersectionCurvePlane Method |
Rhino for Mac 5.1
Intersects a curve with an (infinite) plane.
Namespace: Rhino.Geometry.IntersectAssembly: RhinoCommon (in RhinoCommon.dll) Version: 5.1.50000.0 (5.0.20693.0)
Syntaxpublic static CurveIntersections CurvePlane(
Curve curve,
Plane plane,
double tolerance
)
Public Shared Function CurvePlane (
curve As Curve,
plane As Plane,
tolerance As Double
) As CurveIntersections
Parameters
- curve
- Type: Rhino.GeometryCurve
Curve to intersect. - plane
- Type: Rhino.GeometryPlane
Plane to intersect with. - tolerance
- Type: SystemDouble
Tolerance to use during intersection.
Return Value
Type:
CurveIntersectionsA list of intersection events or null if no intersections were recorded.
See Also