Gets or sets the normal vector n=(a,b,c) of 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 Vector3d NormalVector { get; set; }
Visual Basic (Declaration)
Public Property NormalVector As Vector3d
Visual C++
public:
property Vector3d^ NormalVector {
	Vector3d^ get ();
	void set (Vector3d^ value);
}

Field Value

A normal vector of the plane.

Remarks

A different normal vector also changes the value of the right side d of the coordinate form of the plane and the direction vectors of the plane.

Exceptions

ExceptionCondition
System..::.ArgumentExceptionThe length of NormalVector is zero.

See Also