From GamingWiki
(Created page with "Todo: take in a parameter and set that as the centre of the graph. <onlyinclude><div style="text-align: center;"><graphviz border='frame' format='png' renderer='neato'> digr...") |
(No difference)
|
Revision as of 03:29, 5 July 2014
Todo: take in a parameter and set that as the centre of the graph.
<graphviz border='frame' format='png' renderer='neato'>
digraph Ixion{
{
Arapsis [URL="Arapsis", fontcolor =blue, pos="0,0!"];
Begalen [URL="Begalen", fontcolor =blue, pos="1,1"];
Cerberus [URL="Cerberus", fontcolor =blue, pos="3,2"];
Deluge [URL="Deluge", fontcolor =blue, pos="5,3"];
Ermac [URL="Ermac", fontcolor =blue, pos="6,0!"];
Fenpoint [URL="Fenpoint", fontcolor =blue, pos="2,3"];
Goldrush [URL="Goldrush", fontcolor=blue, pos="6,4!"];
Halcyon [URL="Halcyon", fontcolor=blue, pos="0,4!"];
}
{ edge [len=6, dir=none];
Ermac -> Arapsis; Halcyon -> Goldrush;
}
{ edge [len=4, dir=none];
Arapsis -> Halcyon; Goldrush -> Ermac;
}
{ edge [len=3, dir=none];
{ Ermac, Halcyon } -> { Begalen };
Fenpoint -> { Goldrush };
}
{ edge [len=2, dir=none];
Begalen -> Cerberus -> Deluge -> Ermac -> Cerberus -> Fenpoint -> Begalen;
}
{ edge [len=1, dir=none];
Arapsis -> Begalen; Deluge -> Goldrush;
}
}
</graphviz>