IntersectionPlanePlane Method |
Rhino 5 for Windows
Intersects two planes and return the intersection line. If the planes are
parallel or coincident, no intersection is assumed.
Namespace: Rhino.Geometry.IntersectAssembly: RhinoCommon (in RhinoCommon.dll) Version: 5.1.30000.17 (5.13.60913.21340)
Syntaxpublic 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.
See Also