Model.meshmode#
- Model.meshmode(displaylist, mode, plot)#
Sets the mesh line display mode.
- Parameters:
displaylist (int) – The display list in which the mesh mode is being set.
mode (int) – The mesh line mode.
plot (int) – Value indicating if the display should be drawn after the mesh mode is set. Should be always set to 1.
Example#
Set the mesh line display mode#import hm import hm.entities as ent model = hm.Model() model.meshmode(displaylist=0, mode=0, plot=1)