Model.deletefillet#
- Model.deletefillet(line)#
Deletes a fillet from a line.
- Parameters:
line (Entity) – The object describing the line entity from which the fillet is to be deleted.
Example#
Delete the fillet from the line with ID 1#import hm import hm.entities as ent model = hm.Model() model.deletefillet(line=ent.Line(model, 1))