Model.CE_Cleanup#

Model.CE_Cleanup(collection)#

Sets connectors to unrealized and back to a clean undefined state.

Parameters:

collection (Collection) – The collection containing the connector entities to clean.

Example#

Clean connectors with IDs 1-10#
import hm
import hm.entities as ent

model = hm.Model()

model.CE_Cleanup(collection=hm.Collection(model, ent.Connector, list(range(1, 11))))