Home › Forums › Nazca › Questions and Answers › Merge two structures › Reply To: Merge two structures
20 November 2021 at 19:02
#6628
Moderator
Dear Neetesh,
Would putting the structures in a separate cell solve your problem? E.g.:
import nazca as nd
with nd.Cell("strt_bend") as strt_bend:
nd.strt(length=20, width=1, layer=3).put()
nd.bend(angle=180, width=1, radius=120, layer=3).put()
for i in range(10):
strt_bend.put(0, 0, i * 36)
nd.export_gds()
Xaveer