Model.meshline_delete#

Model.meshline_delete(collection)#

Deletes meshlines.

Parameters:

collection (Collection) – The collection containing the meshlines entities.

Example#

Delete meshlines with IDs 100 - 200#
import hm
import hm.entities as ent

model = hm.Model()

line_collection = hm.Collection(model, ent.Line, list(range(100, 201)))

model.meshline_delete(collection=line_collection)