I am new to Nazca, and I am experimenting with some designs.
In particular, I have a cell that I create including pins using the command nd.Pin . Afterwards, I rotate said cell, which I can then display on KLayout with the pins in the correct position. The code I use is similar to the following
with nd.Cell as cellA:
pin1 = nd.Pin().put(x1, y1)
cellA.put(x2,y2,rotation)
However, if I go and extract the actual pin data from the cell after rotation, it will be the same as before rotation (so x1 and y1 in this case).
Is there any way of “forcing” the pins to take the information given by the rotation?
Thank you in advance,
Tommaso