Model.UpdateLatitudeLineDrag#
- Model.UpdateLatitudeLineDrag(int_type)#
Updates the latitude line shape if
int_type=6. It updates the latitude line shape and the addendum surface shape ifint_type=1.- Parameters:
int_type (int) –
1 - Update the latitude lines and the addendum surface.
6 - Update the latitude lines.
Examples#
Update the latitude lines shape#import hm import hm.entities as ent model = hm.Model() model.UpdateLatitudeLineDrag(int_type=6)
Update the latitude lines shape and the addendum surface shape#import hm import hm.entities as ent model = hm.Model() model.UpdateLatitudeLineDrag(int_type=1)