From 131bdefdc388e4ca778e58cab7df18f1df1faae2 Mon Sep 17 00:00:00 2001 From: Craig Oates Date: Thu, 4 Nov 2021 20:27:49 +0000 Subject: [PATCH] add .dot file for diagram in README. This is the file used to illustrate the how 'Personal Flash in Real-Time' fits into the 'Return to Ritherdon' project. --- attachments/main-proj-architecture.dot | 30 ++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 attachments/main-proj-architecture.dot diff --git a/attachments/main-proj-architecture.dot b/attachments/main-proj-architecture.dot new file mode 100644 index 0000000..a267f5f --- /dev/null +++ b/attachments/main-proj-architecture.dot @@ -0,0 +1,30 @@ +digraph overview { + fontname = Arial; + node [fontname = Arial]; + label = "Return to Ritherdon"; + labelloc = top; + style = filled; + color = lightgrey; + fontsize = 20; + subgraph cluster0 { + style = filled; + node [style = filled, color = white]; + color = lightblue; + label = "Personal Flash in Real-Time (I.E. 'Artwork 1')"; + fontsize = 16; + Light; + Midpoint; + Relay; + } + subgraph cluster1 { + label = "The other artworks in the exhibiton/project..."; + fontsize = 16; + color = white; + style = filled; + a5 [label = "Artwork 5"]; + a4 [label = "Artwork 4"]; + a3 [label = "Artwork 3"]; + a2 [label = "Artwork 2"]; + } +} +