Last active
May 2, 2024 06:05
-
-
Save caseywatts/b6565da461e69d8eb5235075320cda09 to your computer and use it in GitHub Desktop.
Bubbles! Graphviz Diagram
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
digraph bubbles { | |
node [ | |
color=lightcyan2, | |
style=filled, | |
fillcolor=lightcyan | |
] | |
edge [ | |
color=white | |
] | |
A [label="\n\n"] | |
B [label="\n\n"] | |
C [label="\n\n"] | |
D [label="\n\n"] | |
E [label="\n\n"] | |
F [label="\n\n"] | |
G [label="\n\n"] | |
H [label="\n\n"] | |
I [label="\n\n"] | |
J [label="\n\n"] | |
K [label="\n\n"] | |
L [label="\n\n"] | |
A -> B -> C | |
B -> D | |
G -> H | |
D -> C | |
D -> L | |
I -> J -> K | |
J -> L | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment