Skip to content

Commit

Permalink
Update spiral.py
Browse files Browse the repository at this point in the history
fix pin
  • Loading branch information
lukasc-ubc committed Nov 15, 2023
1 parent 3ac2b9c commit c4ee701
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion klayout/EBeam/pymacros/pcells_EBeam_Beta/spiral.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ def produce_impl(self):
else:
x = (2*b + a * (turn+1) * 2 * pi)/dbu
t = Trans(Trans.R0, x,0)
pin = Path([Point(0,pin_length/2), Point(0,-pin_length/2)], w)
pin = Path([Point(0,-pin_length/2), Point(0,pin_length/2)], w)
pin_t = pin.transformed(t)
shapes(LayerPinRecN).insert(pin_t)
text = Text ("pin1", t)
Expand Down

0 comments on commit c4ee701

Please sign in to comment.