"सदस्य:आदित्य चौधरी/प्रयोग पन्ना": अवतरणों में अंतर

भारत डिस्कवरी प्रस्तुति
यहाँ जाएँ:नेविगेशन, खोजें
(पन्ने को खाली किया)
No edit summary
पंक्ति 1: पंक्ति 1:
<graphviz>
digraph G {
  bgcolor="transparent";
  rankdir=LR;
  Dreieck 
    [shape=triangle,
    style=filled,
    color=blue,
    fillcolor=midnightblue,
    fontcolor=white];
  Ei
    [shape=egg,
    style=filled,
    color=beige,
    fillcolor=lightcoral];
  Kasten
    [shape=box,
    style=filled,
    color=yellow,
    fillcolor=green];
  Haus
    [shape=house,
      style=filled,
      color=gray,
      fillcolor=red];
  Kreis
    [shape=circle,
    style=filled,
    color=green,
    fillcolor=lawngreen,
    fontcolor=linen];
  Nix
    [shape=none,
    fontcolor=red];


  Dreieck -> Ei -> Kasten ->
  Haus -> Kreis ->Nix [color=blue]; // Pfeile blau
  Standard -> Ei -> Haus [color=red]; // Standard vorher nicht definiert
                                    // Pfeile rot
</graphviz>

07:55, 6 जुलाई 2011 का अवतरण

<graphviz> digraph G {

 bgcolor="transparent";
 rankdir=LR;
 Dreieck  
   [shape=triangle, 
    style=filled, 
    color=blue, 
    fillcolor=midnightblue, 
    fontcolor=white];
 Ei 
   [shape=egg, 
    style=filled, 
    color=beige, 
    fillcolor=lightcoral];
 Kasten 
   [shape=box, 
    style=filled, 
    color=yellow, 
    fillcolor=green];
 Haus 
    [shape=house, 
     style=filled, 
     color=gray, 
     fillcolor=red];
 Kreis 
   [shape=circle,
    style=filled, 
    color=green, 
    fillcolor=lawngreen, 
    fontcolor=linen];
 Nix 
   [shape=none, 
    fontcolor=red];
 Dreieck -> Ei -> Kasten -> 
 Haus -> Kreis ->Nix [color=blue]; // Pfeile blau
 Standard -> Ei -> Haus [color=red]; // Standard vorher nicht definiert
                                   // Pfeile rot

</graphviz>