File: Copy.block

package info (click to toggle)
msc-generator 8.6.4-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 180,484 kB
  • sloc: cpp: 129,931; yacc: 23,655; ansic: 7,464; sh: 5,026; makefile: 948
file content (27 lines) | stat: -rw-r--r-- 583 bytes parent folder | download | duplicates (2)
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
27
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 X {
    recursive update arrows [line.type = dotted];
}
A.x.a.f->X.y.b.m;