Gets a vector v = (A,B,C) containing the coefficients of the analytic form z=A*x+B*y+C 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 Vector3d Analytic { get; set; }
Visual Basic (Declaration)
Public Property Analytic As Vector3d
Visual C++
public:
property Vector3d^ Analytic {
	Vector3d^ get ();
	void set (Vector3d^ value);
}

Field Value

A vector containing the coefficients of the analytic form of the plane.

Remarks

This form is not defined if the plane has its normal vector in the XY-plane (i.e. n.Z = 0).

Modifying the analytic form also changes all other plane parameters.

Exceptions

ExceptionCondition
System..::.InvalidOperationExceptionThe z-coordinate of the normal vector of the plane is 0.

See Also