Model.settopologydisplaytype#
- Model.settopologydisplaytype(type)#
Sets the various types of geometry display (wireframe, shaded, etc.)
- Parameters:
type (int) –
0 - Wireframe only.
1 - Shaded with edges.
2 - Shaded without edges.
3 - Wireframe with internal surface lines.
Example#
Set the geometry display type to wireframe#import hm import hm.entities as ent model = hm.Model() model.settopologydisplaytype(type=0)