mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-31 05:00:35 +00:00
Get clost to the look I wanted for symtab_flat_copy's graph.
This commit is contained in:
parent
782a4c9a8d
commit
695f71eeb6
1 changed files with 9 additions and 9 deletions
|
@ -169,24 +169,24 @@ symbol_t *symtab_add_class (symtab_t *symtab, const char *name,
|
|||
|
||||
\dot
|
||||
digraph symtab_flat_copy {
|
||||
layout=fdp;
|
||||
parent;
|
||||
layout=dot; rankdir=LR; compound=true; nodesep=1.0;
|
||||
subgraph clusterI {
|
||||
node [shape=record];
|
||||
root [label="{<p>parent|integer\ x;|integer\ y;|float\ z;}"];
|
||||
base [label="{<p>parent|float\ w;|float\ x;}"];
|
||||
cur [label="{<p>parent|float\ y;}"];
|
||||
root [label="<p>parent|integer\ x;|integer\ y;|float\ z;"];
|
||||
base [label="<p>parent|float\ w;|float\ x;"];
|
||||
cur [label="<p>parent|float\ y;"];
|
||||
symtab [shape=ellipse];
|
||||
cur:p -> base;
|
||||
base:p -> root;
|
||||
}
|
||||
subgraph clusterO {
|
||||
node [shape=record];
|
||||
out [label="{<p>parent|float\ z;|float\ w;|float\ x;|float\ y;}"];
|
||||
out [label="<p>parent|float\ z;|float\ w;|float\ x;|float\ y;"];
|
||||
return [shape=ellipse];
|
||||
parent [shape=ellipse];
|
||||
}
|
||||
symtab;
|
||||
return;
|
||||
symtab -> cur;
|
||||
clusterI -> clusterO [len=1];
|
||||
cur -> out [ltail=clusterI,lhead=clusterO];
|
||||
out:p -> parent;
|
||||
return -> out;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue