RhinoCommon API
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
public static bool PlanePlane( Plane planeA, Plane planeB, out Line intersectionLine )
Public Shared Function PlanePlane ( planeA As Plane, planeB As Plane, <OutAttribute> ByRef intersectionLine As Line ) As Boolean
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: Booleantrue on success, false on failure.