Click or drag to resize
DigitalRuneGeometryHelper.GetIntersection Method
Gets the intersection point of three planes.

Namespace: DigitalRune.Geometry
Assembly: DigitalRune.Geometry (in DigitalRune.Geometry.dll) Version: 1.18.0.0 (1.18.2.14427)
Syntax
public static Vector3F GetIntersection(
	Plane planeA,
	Plane planeB,
	Plane planeC
)

Parameters

planeA
Type: DigitalRune.Geometry.Shapes.Plane
The first plane.
planeB
Type: DigitalRune.Geometry.Shapes.Plane
The second plane.
planeC
Type: DigitalRune.Geometry.Shapes.Plane
The third plane.

Return Value

Type: Vector3F
The point that touches all three planes. (NaN, NaN, NaN) is returned if there is no unique intersection point, for example, when two planes are parallel or the planes intersect in a line.
See Also