Model.morphreparam#

Model.morphreparam(collectiondomain)#

Reparameterizes domains on the collection.

Parameters:

collectiondomain (Collection) – The collection containing the domain entities.

Example#

Domains on the collection selected interactively are reparameterized, which means that the influence coefficients for the nodes within that domain are recalculated for the handles on the domain.#
import hm
import hm.entities as ent

model = hm.Model()

model.morphreparam(
    collectiondomain=hm.CollectionByInteractiveSelection(model, ent.Domain)
)

Note

This function will trigger the update of any existing shapes which are affected by the recalculation.