Home › Forums › Nazca › Questions and Answers › Euler bends automatic and non automatic routing
Dear Nazca creators,
unfortunately search in documentation did not work on the website.
Could you please help me with the following questions:
1) Is there any analog of interconnect.sbend_p2p but for Euler curve?
2) Is there auto routing function for Euler bends?
thanks,
Denis
Hi Denis,
You might try cobra_p2p() or set ‘N’ along with the interconnects for routing automation. For example:
—
import nazca as nd import nazca.demofab as demo
a1 = demo.deep.strt(10).put(0,0) a2 = demo.deep.strt(10).put(300, 100, 180) a3 = demo.deep.cobra_p2p(a1, a2, N=10).put() demo.deep.euler_arc_euler(N=5).put(a3.pin[‘b4’])
nd.export_gds()
Katarzyna