Initializes a new instance of Plane from normal vector and a point on the plane.

Namespace: DigitalRune.Geometry.Shapes
Assembly: DigitalRune.Geometry (in DigitalRune.Geometry.dll) Version: 1.9.0.0 (1.9.3.9490)

Syntax

C#
public Plane(
	Vector3F normal,
	Vector3F pointOnPlane
)
Visual Basic
Public Sub New ( _
	normal As Vector3F, _
	pointOnPlane As Vector3F _
)
Visual C++
public:
Plane(
	Vector3F normal, 
	Vector3F pointOnPlane
)

Parameters

normal
Type: DigitalRune.Mathematics.Algebra..::..Vector3F
The normalized, outward pointing normal vector of the plane.
pointOnPlane
Type: DigitalRune.Mathematics.Algebra..::..Vector3F
A point on the plane.

See Also