File: exG3.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 (31 lines) | stat: -rw-r--r-- 748 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
28
29
30
31
col {
    cell a {
        box main: Application\nComponent
          [text.gap.left=10, imargin=5];
        box sm1: [width=20, height=main@20%, center=main@left, top=main@20%, fill.color=blue+80];
        box sm2: [width=20, height=main@20%, center=main@left, top=main@60%, fill.color=blue+80];
    }
    space;
    text: Original;
}
space 30;
col x{
    copy a as A;
    join A.main+A.sm1+A.sm2;
    space;
    text: Join: Line;
}
space 30;
col y{
    join A.main+A.sm1+A.sm2 [line.type=, fill.color=green, fill.gradient=down];
    copy a as A;
    space;
    text: Join: Fill;
}
space 30;
col z{
    join A.main+A.sm1+A.sm2 [line.type=, shadow.offset=5, shadow.color=lgray, shadow.blur=2];
    copy a as A;
    space;
    text: Join: Shadow;
}