Model.edgerestore#

Model.edgerestore(edge)#

Unsuppresses the selected edge.

Parameters:

edge (Entity) – The line entity to unsuppress that refer to edges.

Example#

Unsuppress edge with ID 5#
import hm
import hm.entities as ent

model = hm.Model()

model.edgerestore(edge=ent.Line(model,5))