From GamingWiki
Jump to: navigation, search
Line 20: Line 20:
 
   }
 
   }
 
   { edge [len=3, dir=none];
 
   { edge [len=3, dir=none];
     { Ermac, Halcyon } -> { Begalen };
+
     Ermac -> Begalen -> { Halcyon };
 
     Fenpoint -> { Goldrush };
 
     Fenpoint -> { Goldrush };
 
   }
 
   }

Revision as of 03:37, 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,1.5"];
   Deluge [URL="Deluge", fontcolor =blue, pos="5,1.5"];
   Ermac [URL="Ermac", fontcolor =blue, pos="6,0!"];
   Fenpoint [URL="Fenpoint", fontcolor =blue, pos="2,2"];
   Goldrush [URL="Goldrush", fontcolor=blue, pos="6,3!"];
   Halcyon [URL="Halcyon", fontcolor=blue, pos="0,3!"];
 }
 { edge [len=6, dir=none];
   Ermac -> Arapsis; Halcyon -> Goldrush;
 }
 { edge [len=4, dir=none];
   Arapsis -> Halcyon; Goldrush -> Ermac;
 }
 { edge [len=3, dir=none];
   Ermac -> Begalen -> { Halcyon };
   Fenpoint -> { Goldrush };
 }
 { edge [len=2, dir=none];
   Begalen -> Cerberus -> Deluge -> Ermac -> Cerberus -> Fenpoint -> Begalen;
 }
 { edge [len=1, dir=none];
   Arapsis -> Begalen; Deluge -> Goldrush;
 }
}
</graphviz>