MeshTopologyVertexList.Item Property

MeshTopologyVertexListItem Property

Gets or sets the vertex at the given index. Setting a location adjusts all vertices in the mesh's vertex list that are defined by this topological vertex The index must be valid or an IndexOutOfRangeException will be thrown.

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

Parameters

index
Type: SystemInt32
Index of topology vertex to access.

Return Value

Type: Point3f
The topological vertex at [index].

Implements

IListTItemInt32
IReadOnlyListTItemInt32
See Also