Model.edgesmarkrestore#

Model.edgesmarkrestore(collection)#

Unsuppresses a group of edges.

Parameters:

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

Example#

Unsuppress edges with IDs 5 , 10 , 21 , and 30#
import hm
import hm.entities as ent

model = hm.Model()

lines = hm.Collection(model, ent.Line, [5,10,21,30])

model.edgesmarkrestore(collection=lines)