diff options
author | 2019-11-22 20:30:57 +0100 | |
---|---|---|
committer | 2019-11-22 20:30:57 +0100 | |
commit | 42e775fecec81acd40dbc5f536c8a4cd98a03662 (patch) | |
tree | f58586d2223f39933d9bfbe6fff4e7a88fe4b6d3 /docs/graphs/iced.dot | |
parent | a7dba612f03e58d7bd9527499d893987986b347c (diff) | |
parent | 9712b319bb7a32848001b96bd84977430f14b623 (diff) | |
download | iced-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.dot | 46 |
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; +} |