Skip to content

Commit

Permalink
sliver fix #214
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasc-ubc committed Jul 8, 2024
1 parent 9d0e835 commit dec8aaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion klayout_dot_config/python/SiEPIC/utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1106,7 +1106,7 @@ def arc_bezier(radius, start, stop, bezier, DevRec=None, dbu=0.001):
t = i * diff
pts.append(pya.Point(-L, 0) + pya.Point(t**3 * xA + t**2 * xB +
t * xC + xD, t**3 * yA + t**2 * yB + t * yC + yD))
pts.extend([pya.Point(0, L - 1), pya.Point(0, L)])
pts.extend([pya.Point(0, L)])
return pts


Expand Down

0 comments on commit dec8aaf

Please sign in to comment.