Constructs a plane from the analytic form of the plane z=Ax+By+C

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

Syntax

C#
public Plane(
	double A,
	double B,
	double C
)
Visual Basic (Declaration)
Public Sub New ( _
	A As Double, _
	B As Double, _
	C As Double _
)
Visual C++
public:
Plane(
	double A, 
	double B, 
	double C
)

Parameters

A
Type: System..::.Double
The value A in the analytic form z=Ax+By+C
B
Type: System..::.Double
The value B in the analytic form z=Ax+By+C
C
Type: System..::.Double
The value C in the analytic form z=Ax+By+C

Remarks

The analytic form is not defined if the normal vector of the plane is perpendicular to the z-axis.

Exceptions

ExceptionCondition
System..::.ArgumentExceptionThe resulting direction vectors are parallel.

See Also