File: Copy.block

package info (click to toggle)
msc-generator 8.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 180,648 kB
  • sloc: cpp: 133,265; yacc: 23,546; ansic: 7,210; sh: 4,512; lex: 2,028; makefile: 1,085
file content (26 lines) | stat: -rw-r--r-- 579 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
col a {
     row x {
        boxcol a {
            box f;
            below box g;
            box h;
            multi 2 box n;
            multi box m {*trapezoid;}
        }
        use line.color=red, distance=5, routing=curvy;
        copy a as b [line.color=green] {
            use line.color=blue;
            replace f *oval f: ff;
        }
        a.g->b.g;
        a.f->b.f;
        a.n->b.n;
        a.m.front->b.m.front;
    }
    copy x as y;
}
space 10;
copy a as b {
    recursive update arrows [line.type = dotted];
}
a.x.a.f->b.y.b.m;