Constructs a plane from a point on the plane and a normal vector of the plane.

Namespace:  ceometric.VectorGeometry
Assembly:  ceometric.VectorGeometry (in ceometric.VectorGeometry.dll) Version: 1.8.0.0 (1.8.0.0)

Syntax

C#
public Plane(
	Point point,
	Vector3d normalVector
)
Visual Basic (Declaration)
Public Sub New ( _
	point As Point, _
	normalVector As Vector3d _
)
Visual C++
public:
Plane(
	Point^ point, 
	Vector3d^ normalVector
)

Parameters

point
Type: ceometric.VectorGeometry..::.Point
A point on the plane.
normalVector
Type: ceometric.VectorGeometry..::.Vector3d
A normal vector of the plane.

Exceptions

ExceptionCondition
System..::.ArgumentExceptionThe length of the normal vector is zero.

See Also