Model.edgesmarkrelease#

Model.edgesmarkrelease(collection)#

Unstitches each of the input edges.

Parameters:

collection (Collection) – The collection containing the line entities that refer to edges.

Example#

Unstitching edges with IDs 16, 18, 25, and 44#
import hm
import hm.entities as ent

model = hm.Model()

lines = hm.Collection(model, ent.Line, [16,18,25,44])

model.edgesmarkrelease(collection=lines)