MeshFaceNormalList.Item Property

MeshFaceNormalListItem Property

Gets or sets the face normal at the given face index. The index must be valid or an IndexOutOfRangeException will be thrown.

Namespace:  Rhino.Geometry.Collections
Assembly:  RhinoCommon (in RhinoCommon.dll)
Syntax
public Vector3f this[
	int index
] { get; set; }
Public Default Property Item ( 
	index As Integer
) As Vector3f
	Get
	Set

Parameters

index
Type: SystemInt32
Index of face normal to access.

Return Value

Type: Vector3f
The face normal at [index].

Implements

IListTItemInt32
IReadOnlyListTItemInt32
Exceptions
ExceptionCondition
IndexOutOfRangeExceptionThrown when the index is invalid.
See Also