Hello,
im currently working with nazca and need a rectangle with rounded edges. So i tried to use the geometries function for rounded rectangles but the rectangle has no rounded edges in the *.gds file.
The code I use looks like this
import nazca as nd
with nd.Cell() as rr:
nd.Polygon(layer = 15, points=nd.geometries.rounded_rect(length=350,height=350)).put()
rr.put()
nd.export_gds()
The rectangle looks like this
Maybe you can help me.
Greetings
Christian