Fix sequence connection with leftmost lifeline #25

Merged
HEL merged 5 commits from fix/issue-24-layered-lifelines into dev 2026-01-21 13:30:54 +00:00
13 changed files with 47 additions and 6 deletions
Showing only changes of commit 3a7e0a8176 - Show all commits

View File

@@ -0,0 +1,4 @@
# generated by tytanic, do not edit
diff/**
out/**

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.4 KiB

View File

@@ -0,0 +1,29 @@
#set page(width: auto, height: auto)
#import "/src/lib.typ": *
#let make-diagram(_seq) = {
diagram({
_par("a")
_par("b")
_par("c")
_seq("a", "b")
_seq("c", "b")
_seq("a", "b", enable-dst: true)
_seq("a", "b")
_seq("c", "b")
_seq("a", "b", enable-dst: true)
_seq("a", "b")
_seq("c", "b")
_seq("a", "b", enable-dst: true)
_seq("a", "b")
_seq("c", "b")
_evt("b", "disable")
_evt("b", "disable")
_evt("b", "disable")
})
}
#make-diagram(_seq)
#pagebreak()
#make-diagram(_seq.with(outer-lifeline-connect: true))