Gets or sets the normal vector of the mesh triangle.

Namespace:  ceometric.ComputationalGeometry
Assembly:  ceometric.ComputationalGeometry (in ceometric.ComputationalGeometry.dll) Version: 2.4.0.0 (2.4.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

The normal vector.

Remarks

The mesh triangle can not compute its normal vector by itself because it only knows the indices but not the position of its vertices.

See Also