Model.morphdisplaydependencies#

Model.morphdisplaydependencies(collection)#

Displays dependencies for handles on collection.

Parameters:

collection (Collection) – The collection containing the handle entities to display.

Example#

The dependencies for all handles on the collection selected interactively are displayed on the screen as vectors#
import hm
import hm.entities as ent

model = hm.Model()

model.morphdisplaydependencies(
    collection=hm.CollectionByInteractiveSelection(model, ent.Handle)
)

Note

If the collection is blank, the vectors are cleared from the screen.