Model.morphmvskinsolve#
- Model.morphmvskinsolve()#
Finishes the morphing applied to the model when using morph volumes in “skin only” mode. When in “skin only” mode, only the exterior nodes of a solid element mesh will be morphed, leaving the interior unmorphed. This function completes the morphing process, allowing you to morph the model many times without needing to wait for all of the nodes to be updated. Then you may call this function to solve for the entire model. If the morph volumes are unmorphed since the last time this function was called or the morph volumes are not in “skin only” mode, this function will perform no action.
Use the function
Model.morphupdateparameter()with argumentmvonof this function to set and unset the morph volumes to inactive, active, and skin only modes.Example#
Solve for the interior nodes after morph morph volumes in skin only mode#import hm import hm.entities as ent model = hm.Model() model.morphmvskinsolve()