Gets the norm of the 3d vector.

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

Syntax

C#
public double Norm { get; set; }
Visual Basic (Declaration)
Public Property Norm As Double
Visual C++
public:
property double Norm {
	double get ();
	void set (double value);
}

Field Value

The norm of the vector.

Remarks

The Norm is the square root of the sum of the squares of all elements.

The norm is also the length of the vector.

In contrast to the definition of the norm, setting a negative norm is feasible and simply inverts the direction of the vector.

See Also