Model.hm_morph_getmvoledgenodes#
- Model.hm_morph_getmvoledgenodes(edge_id)#
Returns the IDs of the nodes along a specified morph volume edge.
- Parameters:
edge_id (int) – The ID of the morph volume edge.
- Returns:
hwReturnStatus- Status objectHmQueryResult- Result object containing the output values:nodes (EntityList) - Entity Type:
Node
Example#
Find the node IDs for morph volume edge eith ID 5#import hm import hm.entities as ent model = hm.Model() _,result = model.hm_morph_getmvoledgenodes(edge_id=5) print("nodes",result.nodes)