From GamingWiki
Jump to: navigation, search
(Created page with "Todo: take in a parameter and set that as the centre of the graph. <onlyinclude><graphviz border='frame' format='png' renderer='neato'> digraph teraPhi { { rank=same; Seph...")
 
 
(5 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
Todo: take in a parameter and set that as the centre of the graph.  
 
Todo: take in a parameter and set that as the centre of the graph.  
  
<onlyinclude><graphviz border='frame' format='png' renderer='neato'>
+
<onlyinclude><div style="text-align: center;"><graphviz border='frame' format='png' renderer='neato'>
 
  digraph teraPhi {
 
  digraph teraPhi {
 
   { rank=same;
 
   { rank=same;
Line 37: Line 37:
 
   }
 
   }
 
  }
 
  }
</graphviz></onlyinclude>
+
</graphviz></div></onlyinclude>

Latest revision as of 03:40, 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 teraPhi {
 { rank=same;
 Sephii [URL="Sephii" fontcolor=blue];
 }
 { rank=same;
 Antares [URL="Antares" fontcolor =blue];
 Deneb [URL="Deneb" fontcolor =blue];
 Eridanus [URL="Eridanus" fontcolor =blue];
 Zashar [URL="Zash'ar" label="Zash'ar" fontcolor =blue];
 }
 { rank=same;
 NovOrion [URL="Nov'Orion" label="Nov'Orion" fontcolor =blue];
 }
 edge [len=2,dir=both];
 Sephii -> { Antares } -> NovOrion;
 Sephii -> { Zashar } -> NovOrion;
 Sephii -> { Eridanus } -> NovOrion;
 Sephii -> { Deneb } -> NovOrion;
 edge [len=2,dir=forward];
 Antares -> Zashar
   Deneb -> Eridanus
 ;
 { rank=same;
 Sephii ;
 }
 { rank=same;
 Antares ;
 Deneb ;
 Eridanus ;
 Zashar ;
 }
 { rank=same;
 NovOrion;
 }
}
</graphviz>