Home › Forums › Nazca › Creating Paths › Reply To: Creating Paths
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