This commit is contained in:
Costa Shulyupin 2019-11-21 17:09:09 +02:00
parent 472587c02e
commit 7730d7529f
1 changed files with 31 additions and 6 deletions

View File

@ -20,12 +20,27 @@ digraph matrix {
fixedsize=true fixedsize=true
]; ];
usr_ usr_
functions_
D0 D0
E0 E0
F0 F0
G0 G0
H0 H0
} }
{ //
node [fixedsize=true,
style=invis,
width=0.0
height=0.0
];
row=subfunc;
system_;
networking_;
storage_;
memory_;
processing_;
HI_;
} //
{ {
edge [style="filled,setlinewidth(3)", edge [style="filled,setlinewidth(3)",
weight=10 weight=10
@ -43,6 +58,7 @@ digraph matrix {
style="filled,setlinewidth(3)", style="filled,setlinewidth(3)",
tooltip=TODO, tooltip=TODO,
width=1]; width=1];
system_;
SCI [color="#e27dd6ff", SCI [color="#e27dd6ff",
fillcolor="#d9e7ee", fillcolor="#d9e7ee",
fixedsize=true, fixedsize=true,
@ -51,7 +67,7 @@ digraph matrix {
row=usr, row=usr,
shape=ellipse, shape=ellipse,
style="filled,setlinewidth(3)"]; style="filled,setlinewidth(3)"];
system -> SCI [arrowhead="", system -> system_ [arrowhead="",
color="#e27dd6ff", color="#e27dd6ff",
row=func, row=func,
style="filled,setlinewidth(3)", style="filled,setlinewidth(3)",
@ -130,7 +146,7 @@ digraph matrix {
row=usr, row=usr,
shape=ellipse, shape=ellipse,
style="filled,setlinewidth(3)"]; style="filled,setlinewidth(3)"];
networking -> sock [arrowhead="", networking -> networking_ [arrowhead="",
color="#61c2c5", color="#61c2c5",
row=func, row=func,
style="filled,setlinewidth(3)", style="filled,setlinewidth(3)",
@ -209,7 +225,7 @@ digraph matrix {
row=usr, row=usr,
shape=ellipse, shape=ellipse,
style="filled,setlinewidth(3)"]; style="filled,setlinewidth(3)"];
storage -> FS [arrowhead="", storage -> storage_ [arrowhead="",
color="#8383cc", color="#8383cc",
row=func, row=func,
style="filled,setlinewidth(3)", style="filled,setlinewidth(3)",
@ -324,7 +340,7 @@ digraph matrix {
row=usr, row=usr,
shape=ellipse, shape=ellipse,
style="filled,setlinewidth(3)"]; style="filled,setlinewidth(3)"];
processing -> proc [arrowhead="", processing -> processing_ [arrowhead="",
color="#c46747", color="#c46747",
row=func, row=func,
style="filled,setlinewidth(3)", style="filled,setlinewidth(3)",
@ -401,7 +417,7 @@ digraph matrix {
row=usr, row=usr,
shape=ellipse, shape=ellipse,
style="filled,setlinewidth(3)"]; style="filled,setlinewidth(3)"];
HI -> char [arrowhead="", HI -> HI_ [arrowhead="",
color="#cfbf57ff", color="#cfbf57ff",
row=func, row=func,
style="filled,setlinewidth(3)", style="filled,setlinewidth(3)",
@ -608,7 +624,7 @@ digraph matrix {
row=usr, row=usr,
shape=ellipse, shape=ellipse,
style="filled,setlinewidth(3)"]; style="filled,setlinewidth(3)"];
memory -> MA [arrowhead="", memory -> memory_ [arrowhead="",
color="#51bf5b", color="#51bf5b",
row=func, row=func,
style="filled,setlinewidth(3)", style="filled,setlinewidth(3)",
@ -659,6 +675,15 @@ digraph matrix {
usr; usr;
MA; MA;
} }
{
edge [weight=10 style=invis];
system_ -> SCI
networking_ -> sock;
storage_ -> FS;
memory_ -> MA;
processing_ -> proc;
HI_ -> char;
}
{ {
graph [rank=same]; graph [rank=same];
D0; D0;