Model.morphorganizedomainsplit#

Model.morphorganizedomainsplit(node, domain)#

Splits edge domain at given node.

Parameters:
  • node (Entity) – The node entity.

  • domain (Entity) – The domain entity.

Example#

Split the domain with ID 32 into two edge domains at the node with ID 12#
import hm
import hm.entities as ent

model = hm.Model()

model.morphorganizedomainsplit(node=ent.Node(model, 12), domain=ent.Domain(model, 32))