Model.cuttingplanereverse#
- Model.cuttingplanereverse(id)#
Reverses a cutting plane display orientation.
- Parameters:
axis (int) –
The axis that is normal to the plane. Valid values are:
0 - The plane with x-axis as its normal.
1 - The plane with y-axis as its normal.
2 - The plane with z-axis as its normal.
Example#
Reverse the cut plane with y - axis as its normal#import hm import hm.entities as ent model = hm.Model() model.cuttingplanereverse(axis=1)