IntersectionPlanePlanePlane Method |
Rhino 5 for Windows
Intersects three planes to find the single point they all share.
Namespace: Rhino.Geometry.IntersectAssembly: RhinoCommon (in RhinoCommon.dll) Version: 5.1.30000.17 (5.13.60913.21340)
Syntaxpublic static bool PlanePlanePlane(
Plane planeA,
Plane planeB,
Plane planeC,
out Point3d intersectionPoint
)
Public Shared Function PlanePlanePlane (
planeA As Plane,
planeB As Plane,
planeC As Plane,
<OutAttribute> ByRef intersectionPoint As Point3d
) As Boolean
Parameters
- planeA
- Type: Rhino.GeometryPlane
First plane for intersection. - planeB
- Type: Rhino.GeometryPlane
Second plane for intersection. - planeC
- Type: Rhino.GeometryPlane
Third plane for intersection. - intersectionPoint
- Type: Rhino.GeometryPoint3d
Point where all three planes converge.
Return Value
Type:
Booleantrue on success, false on failure. If at least two out of the three planes
are parallel or coincident, failure is assumed.
See Also