Click or drag to resize

SubDDissolveOrDeleteComponents Method (IEnumerableSubDComponent)

Dissolves the given edges and vertices, merging the faces around them, and deletes the given faces.

This is the difference between removing an edge between two quads to get one bigger face, and removing the two quads to leave a hole. Use DeleteComponents(IEnumerableSubDComponent, Boolean) when a hole is what you want.

Namespace:  Rhino.Geometry
Assembly:  RhinoCommon (in RhinoCommon.dll)
Since: 8.36
Syntax
public uint DissolveOrDeleteComponents(
	IEnumerable<SubDComponent> components
)

Parameters

components
Type: System.Collections.GenericIEnumerableSubDComponent
The vertices, edges and faces to dissolve or delete.

Return Value

Type: UInt32
The number of merged faces created by dissolving edges and vertices.
See Also