Constructs a plane from the coordinate form of the plane a*x + b*y + c*z = d.

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

Syntax

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

Parameters

normalVector
Type: ceometric.VectorGeometry..::.Vector3d
A normal vector n = (a,b,c) of the plane a*x + b*y + c*z = d.
d
Type: System..::.Double
The right side d of the coordinate form of the plane a*x + b*y + c*z = d.

Remarks

The normal vector n = (a,b,c) needs not to be normalized. Use NCF_normal and NCF_d to get the normalized coordinate form of the plane.

Exceptions

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

See Also