Skip to content

Commit

Permalink
Increase milling tolerance to accomodate for edge cases
Browse files Browse the repository at this point in the history
  • Loading branch information
yaqwsx committed Jun 12, 2024
1 parent 118f25f commit 151b0d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kikit/substrate.py
Original file line number Diff line number Diff line change
Expand Up @@ -939,7 +939,7 @@ def millFillets(self, millRadius):
Add fillets to inner corners which will be produced by a mill with
given radius.
"""
EPS = 50 # This number is intentionally near KiCAD's resolution of 1nm to not enclose narrow slots, but to preserve radius
EPS = 1000 # This number is intentionally near KiCAD's resolution of 1nm to not enclose narrow slots, but to preserve radius
RES = 32
if millRadius < EPS:
return
Expand Down

0 comments on commit 151b0d6

Please sign in to comment.