1
0
forked from HEL/circuiteria

added doc for wire.intersection

This commit is contained in:
2024-05-18 21:52:46 +02:00
parent 011802ffbe
commit a856b7f634
3 changed files with 12 additions and 0 deletions

View File

@ -140,4 +140,11 @@ element.block(id: "b3", w: 2, h: 3,
wire.wire("w1", ("b1-port-out", "b3-port-in1"))
wire.wire("w2", ("b2-port-out", "b3-port-in2"),
style: "zigzag")
```)
#let intersection = example(```
wire.wire("w1", ((0, 0), (1, 1)), style: "zigzag")
wire.wire("w2", ((0, 0), (1, -.5)),
style: "zigzag", zigzag-ratio: 80%)
wire.intersection("w1.zig")
```)