added doc for wire.intersection

This commit is contained in:
Louis Heredero 2024-05-18 21:52:46 +02:00
parent 011802ffbe
commit a856b7f634
Signed by: HEL
GPG Key ID: 8D83DE470F8544E7
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")
```)

Binary file not shown.

View File

@ -7,6 +7,11 @@
#let signal-width = 1pt
#let bus-width = 1.5pt
/// Draws a wire intersection at the given anchor
/// #examples.intersection
/// - pt (point): A CeTZ compatible point / anchor
/// - radius (number): The radius of the intersection
/// - fill (color): The fill color
#let intersection(pt, radius: .1, fill: black) = {
draw.circle(pt, radius: radius, stroke: none, fill: fill)
}