Skip to content

Commit

Permalink
fixed method that was using deprecated method remove_edges
Browse files Browse the repository at this point in the history
  • Loading branch information
maxcapodi78 committed Jan 16, 2025
1 parent 17a2ec6 commit 75f4ad5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ansys/aedt/core/modeler/cad/primitives.py
Original file line number Diff line number Diff line change
Expand Up @@ -4394,7 +4394,7 @@ def create_faceted_bondwire_from_true_surface(self, assignment, direction, min_s
P = self.get_existing_polyline(assignment=new_edges[0])

if edge_to_delete:
P.remove_edges(edge_to_delete)
P.remove_segments(edge_to_delete)

angle = math.pi * (180 - 360 / number_of_segments) / 360

Expand Down

0 comments on commit 75f4ad5

Please sign in to comment.