Click or drag to resize
DigitalRunePlaneShape Constructor (Vector3F, Vector3F, Vector3F)
Initializes a new instance of the PlaneShape class 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 PlaneShape(
	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.
Exceptions
ExceptionCondition
ArgumentExceptionpoint0, point1, and point2 do not form a valid triangle.
Remarks
This constructor creates a PlaneShape 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.
See Also