Click or drag to resize
DigitalRunePlane Constructor (Vector3F, Vector3F, Vector3F)
Initializes a new instance of Plane from three points.

Namespace: DigitalRune.Geometry.Shapes
Assembly: DigitalRune.Geometry (in DigitalRune.Geometry.dll) Version: 1.18.0.0 (1.18.2.14427)
Syntax
public Plane(
	Vector3F point0,
	Vector3F point1,
	Vector3F point2
)

Parameters

point0
Type: DigitalRune.Mathematics.AlgebraVector3F
A point on the plane.
point1
Type: DigitalRune.Mathematics.AlgebraVector3F
A point on the plane.
point2
Type: DigitalRune.Mathematics.AlgebraVector3F
A point on the plane.
Remarks

This constructor creates a Plane from three points in the plane. The points must be ordered counter-clockwise. The front-face (which points into the empty half-space) is defined through the counter-clockwise order of the points.

The result is undefined if the points lie on a line.

See Also