From 18860ab98bd59f927ee24467963a815b1b3e24a7 Mon Sep 17 00:00:00 2001 From: sbosse Date: Mon, 21 Jul 2025 22:58:32 +0200 Subject: [PATCH] Mon 21 Jul 22:43:21 CEST 2025 --- .../dotLanguage/data/cellular_automata.gv.txt | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 js/dos/ext/vis/examples/network/data/dotLanguage/data/cellular_automata.gv.txt diff --git a/js/dos/ext/vis/examples/network/data/dotLanguage/data/cellular_automata.gv.txt b/js/dos/ext/vis/examples/network/data/dotLanguage/data/cellular_automata.gv.txt new file mode 100644 index 0000000..5e48093 --- /dev/null +++ b/js/dos/ext/vis/examples/network/data/dotLanguage/data/cellular_automata.gv.txt @@ -0,0 +1,23 @@ +digraph G { + // note: not all attributes are recognized and supported by Network + // unrecognized attributes are ignored + + node[width=.25,height=.375,fontsize=15] + node [shape=filled color=#FF00FF fillcolor=#F1AAF0] + 0-> 0 ; + 1-> 1 ; + 2-> 2 ; + 3-> 3 ; + 4-> 4 ; + 5-> 5 ; + 6-> 6 ; + 7-> 5 ; + 8-> 8 ; + 9-> 9 ; + 10-> 10 ; + 11-> 10 ; + 12-> 12 ; + 13-> 5 ; + 14-> 10 ; + 15-> 0 ; +}