Home Forums Nazca Creating Paths Reply To: Creating Paths

#5706
Ronald
Keymaster

Dear Daniel,

I may have over interpreted your question.
For a path (polyline) simply use the Polyline method:

import nazca as nd
nd.Polyline(points=[(0, 0), (10,0)], width=3.0, layer=2).put(0)
nd.export_gds()

Ronald