Click or drag to resize

SubDDeleteComponents Method (IEnumerableSubDComponent, Boolean)

Deletes components from this SubD.

Deleting a vertex deletes every edge and face attached to it. Deleting an edge deletes every face attached to it. Deleting a face deletes only that face.

Namespace:  Rhino.Geometry
Assembly:  RhinoCommon (in RhinoCommon.dll)
Since: 8.36
Syntax
public bool DeleteComponents(
	IEnumerable<SubDComponent> components,
	bool markDeletedFaceEdges
)

Parameters

components
Type: System.Collections.GenericIEnumerableSubDComponent
The components to delete.
markDeletedFaceEdges
Type: SystemBoolean
If true, edges that survive the deletion of a face they bounded get their runtime mark set, so the caller can find the boundary of the hole that was opened.

Return Value

Type: Boolean
True if the deletion succeeded.
See Also