Model.edgesmarkrestorejoints#

Model.edgesmarkrestorejoints(collection)#

Restores previously suppressed (by using Model.verticesmarksuppress()) fixed points on selected surface edges.

Parameters:

collection (Collection) – The collection containing the line entities of input surface edges.

Example#

Restore fixed points on surface edge with ID 99#
import hm
import hm.entities as ent

model = hm.Model()

lines = hm.Collection(model, ent.Line, [99])

model.edgesmarkrestore(collection=lines)