Fix right perimeter pin coordinate bug

This commit is contained in:
mrg 2020-06-28 14:47:17 -07:00
parent 225fc69420
commit 709535f90f
1 changed files with 1 additions and 1 deletions

View File

@ -1165,7 +1165,7 @@ class layout():
layer = "m3"
elif side == "right":
layer = "m3"
peri_pin_loc = vector(right, pin_loc.x)
peri_pin_loc = vector(right, pin_loc.y)
elif side == "top":
layer = "m4"
peri_pin_loc = vector(pin_loc.x, top)