Home › Forums › Nazca › Questions and Answers › Finding the width of a pin › Reply To: Finding the width of a pin
23 March 2021 at 14:02
#6398
Xaveer
Moderator
Hi Jon,
You guessed correctly:
import nazca as nd import nazca.demofab as demo taper = demo.deep.taper(length=5, width1=2, width2=4).put() print(taper.pin["a0"].width, taper.pin["b0"].width) nd.export_gds()
Make sure to add those properties when setting the nd.Pin of your cell.
Xaveer