summaryrefslogtreecommitdiffstats
path: root/docs/graphs/iced.dot
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-11-22 20:30:57 +0100
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-11-22 20:30:57 +0100
commit42e775fecec81acd40dbc5f536c8a4cd98a03662 (patch)
treef58586d2223f39933d9bfbe6fff4e7a88fe4b6d3 /docs/graphs/iced.dot
parenta7dba612f03e58d7bd9527499d893987986b347c (diff)
parent9712b319bb7a32848001b96bd84977430f14b623 (diff)
downloadiced-42e775fecec81acd40dbc5f536c8a4cd98a03662.tar.gz
iced-42e775fecec81acd40dbc5f536c8a4cd98a03662.tar.bz2
iced-42e775fecec81acd40dbc5f536c8a4cd98a03662.zip
Merge branch 'master' into improvement/docs
Diffstat (limited to 'docs/graphs/iced.dot')
-rw-r--r--docs/graphs/iced.dot46
1 files changed, 46 insertions, 0 deletions
diff --git a/docs/graphs/iced.dot b/docs/graphs/iced.dot
new file mode 100644
index 00000000..24dbb972
--- /dev/null
+++ b/docs/graphs/iced.dot
@@ -0,0 +1,46 @@
+digraph G {
+ fontname = "Roboto";
+ newrank=true;
+ node[fontname = "Roboto", style="filled", fontcolor="#333333", fillcolor=white, color="#333333"];
+ edge[color="#333333"];
+
+ subgraph cluster_1 {
+ label = "renderers ";
+ labelloc = "b";
+ labeljust = "r";
+ fontcolor = "#0366d6";
+ color="#f6f8fa";
+ bgcolor="#f6f8fa";
+ style=rounded;
+
+ etc_1 [label="...", style=solid, shape=none];
+ iced_wgpu;
+ }
+
+ subgraph cluster_2 {
+ label = "shells ";
+ labelloc = "b";
+ labeljust = "r";
+ fontcolor = "#0366d6";
+ color="#f6f8fa";
+ bgcolor="#f6f8fa";
+ style=rounded;
+
+ etc_2 [label="...", style=solid, shape=none];
+ iced_winit;
+ }
+
+ subgraph cluster_3 {
+ style=invis;
+ margin=20;
+ iced;
+ }
+
+ { rank = same; iced_wgpu iced_winit etc_1 etc_2 }
+
+ iced_winit -> iced;
+ iced_wgpu -> iced;
+ iced_web -> iced;
+
+ iced;
+}