Skip to content

Commit

Permalink
Improved cutout method and fix_disjoint nets method
Browse files Browse the repository at this point in the history
  • Loading branch information
maxcapodi78 authored and maxcapodi78 committed Nov 22, 2023
1 parent f3c2f17 commit 1e62b8c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyaedt/edb.py
Original file line number Diff line number Diff line change
Expand Up @@ -1497,8 +1497,8 @@ def _create_conformal(
objs_data = self._smart_cut(reference_list, expansion_size)
_polys.extend(objs_data)

Check warning on line 1498 in pyaedt/edb.py

View check run for this annotation

Codecov / codecov/patch

pyaedt/edb.py#L1497-L1498

Added lines #L1497 - L1498 were not covered by tests
k = 0
delta = expansion_size / 10
while k < 4:
delta = expansion_size / 5
while k < 10:
unite_polys = []
for i in _polys:
obj_data = i.Expand(expansion_size, tolerance, round_corner, round_extension)
Expand Down

0 comments on commit 1e62b8c

Please sign in to comment.