Model.removecutbetweenlocations#
- Model.removecutbetweenlocations(location1, location2)#
Removes the cut or edge fillet of a surface between two locations.
- Parameters:
Example#
Remove a cut between locations ( 2.20679 , 5.97826 , 0 ) and ( 4.34783 , 4.26243 , 0 )#import hm import hm.entities as ent model = hm.Model() model.removecutbetweenlocations( location1=[2.20679, 5.97826, 0], location2=[4.34783, 4.26243, 0] )