Model.reparammark#

Model.reparammark(collection)#

Reparameterizes the lines on a collection.

Parameters:

collection (Collection) – The collection containing the line entities to be reparameterized.

Example#

Reparameterize the lines with IDs 1 and 2#
import hm
import hm.entities as ent

model = hm.Model()

model.reparammark(collection=hm.Collection(model, ent.Line, [1, 2]))