Click or drag to resize

IntersectionBrepPlane Method

Intersects a Brep with an (infinite) plane.

Namespace:  Rhino.Geometry.Intersect
Assembly:  RhinoCommon (in RhinoCommon.dll)
Since: 5.0
Syntax
public static bool BrepPlane(
	Brep brep,
	Plane plane,
	double tolerance,
	out Curve[] intersectionCurves,
	out Point3d[] intersectionPoints
)

Parameters

brep
Type: Rhino.GeometryBrep
Brep to intersect.
plane
Type: Rhino.GeometryPlane
Plane to intersect with.
tolerance
Type: SystemDouble
Tolerance to use for intersections.
intersectionCurves
Type: Rhino.GeometryCurve
The intersection curves will be returned here.
intersectionPoints
Type: Rhino.GeometryPoint3d
The intersection points will be returned here.

Return Value

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