Home › Forums › Nazca › Creating Paths › Reply To: Creating Paths
24 October 2019 at 17:00
#5706
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