Model.removefilletbetweennodes#
- Model.removefilletbetweennodes(nodes)#
Removes the edge fillet between two nodes.
- Parameters:
nodes (EntityList) – The list of node entities. The first two nodes entities in the list are used to remove fillets.
Example#
Remove the edge fillet between the nodes with IDs 1 , 2 after create them and specify their coordinates#import hm import hm.entities as ent model = hm.Model() # Creating the nodes and specifying their coordinates n1 = ent.Node(model, localcoordinates=[-25.7203277, -212.155023, 104.852423]) n2 = ent.Node(model, localcoordinates=[71.47504, -213.224288, 96.3130724]) # Remove the edge fillet between them model.removefilletbetweennodes(nodes=[n1, n2])