Model.addincludetodisplay#
- Model.addincludetodisplay(id, shortname)#
This function displays/unmasks all of the entities in the specified include file to the the HyperMesh modeling window.
- Parameters:
id (unsigned int) – The ID of the include file. An ID of 0 selects the main file.
shortname (hwString) – Currently not supported in Python API.
Example#
Add the entities in the include with ID 3 to the display#import hm import hm.entities as ent model = hm.Model() model.addincludetodisplay(id=3)