Yu-Gi-Oh! Deck Building and Card Inventory Management web interface written in Common Lisp, utilizing HTMX.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
626B

  1. // https://graphviz.org/Gallery/directed/cluster.html
  2. digraph G {
  3. fontname="Helvetica,Arial,sans-serif"
  4. node [fontname="Helvetica,Arial,sans-serif"]
  5. edge [fontname="Helvetica,Arial,sans-serif"]
  6. subgraph cluster_0 {
  7. style=filled;
  8. color=lightgrey;
  9. node [style=filled,color=white];
  10. a0 -> a1 -> a2 -> a3;
  11. label = "process #1";
  12. }
  13. subgraph cluster_1 {
  14. node [style=filled];
  15. b0 -> b1 -> b2 -> b3;
  16. label = "process #2";
  17. color=blue
  18. }
  19. start -> a0;
  20. start -> b0;
  21. a1 -> b3;
  22. b2 -> a3;
  23. a3 -> a0;
  24. a3 -> end;
  25. b3 -> end;
  26. start [shape=Mdiamond];
  27. end [shape=Msquare];
  28. }