Click or drag to resize

MeshUnweldVertices Method

Ensures that faces sharing a common topological vertex have unique indices into the MeshVertexList collection.

Namespace:  Rhino.Geometry
Assembly:  RhinoCommon (in RhinoCommon.dll)
Since: 7.0
Syntax
public bool UnweldVertices(
	IEnumerable<int> topologyVertexIndices,
	bool modifyNormals
)

Parameters

topologyVertexIndices
Type: System.Collections.GenericIEnumerableInt32
Topological vertex indices, from the MeshTopologyVertexList collection, to be unwelded. Use TopologyVertexIndex(Int32) to convert from vertex indices to topological vertex indices.
modifyNormals
Type: SystemBoolean
If true, the new vertex normals will be calculated from the face normal.

Return Value

Type: Boolean
true if successful, false otherwise.
See Also