11 lines
263 B
Plaintext
11 lines
263 B
Plaintext
|
digraph join {
|
||
|
// dummy sources as support for edges, make invisible and height 0
|
||
|
a [style=invis height=0 fontsize=0]
|
||
|
b [style=invis height=0 fontsize=0]
|
||
|
c [style=invis height=0 fontsize=0]
|
||
|
|
||
|
a -> Activity
|
||
|
b -> Activity
|
||
|
c -> Activity
|
||
|
}
|