MeshVertexList.SetVertex Method (Int32, Point3d)

MeshVertexListSetVertex Method (Int32, Point3d)

Sets or adds a vertex to the Vertex List.

If [index] is less than [Count], the existing vertex at [index] will be modified.

If [index] equals [Count], a new vertex is appended to the end of the vertex list.

If [index] is larger than [Count], the function will return false.

Namespace:  Rhino.Geometry.Collections
Assembly:  RhinoCommon (in RhinoCommon.dll)
Syntax
public bool SetVertex(
	int index,
	Point3d vertex
)
Public Function SetVertex ( 
	index As Integer,
	vertex As Point3d
) As Boolean

Parameters

index
Type: SystemInt32
Index of vertex to set.
vertex
Type: Rhino.GeometryPoint3d
Vertex location.

Return Value

Type: Boolean
true on success, false on failure.
Version Information

Rhino for Mac

Supported in: 5.4

Rhino for Windows

Supported in: 6.8
See Also