Model.removecutbetweenlocations#

Model.removecutbetweenlocations(location1, location2)#

Removes the cut or edge fillet of a surface between two locations.

Parameters:
  • location1 (hwTriple) – The hwTriple object defining the coordinates of the first location. User can also supply a Python list of three doubles.

  • location2 (hwTriple) – The hwTriple object defining the coordinates of the second location. User can also supply a Python list of three doubles.

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]
)