Gets the normal vector of the triangle.

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; }
Visual Basic (Declaration)
Public ReadOnly Property NormalVector As Vector3d
Visual C++
public:
property Vector3d^ NormalVector {
	Vector3d^ get ();
}

Field Value

The normal vector of the triangle.

Remarks

The normal vector is the cross product v1 x v2 with v1 being the vector pointing from vertex 1 to vertex 2 and v2 being the vector pointing from vertex 1 to vertex 3.

See Also