Click or drag to resize

IntersectionPlanePlane Method

Intersects two planes and return the intersection line. If the planes are parallel or coincident, no intersection is assumed.

Namespace:  Rhino.Geometry.Intersect
Assembly:  RhinoCommon (in RhinoCommon.dll)
Since: 5.0
Syntax
public static bool PlanePlane(
	Plane planeA,
	Plane planeB,
	out Line intersectionLine
)

Parameters

planeA
Type: Rhino.GeometryPlane
First plane for intersection.
planeB
Type: Rhino.GeometryPlane
Second plane for intersection.
intersectionLine
Type: Rhino.GeometryLine
If this function returns true, the intersectionLine parameter will return the line where the planes intersect.

Return Value

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