IntersectionPlanePlanePlane Method |
Intersects three planes to find the single point they all share.
Namespace:
Rhino.Geometry.Intersect
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 5.0
Syntax public 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