Files
book/dot/trpl17-02.dot
Chris Krycho 472f152eae Ch. 17: fix diagrams and embed them in the text
- Swap the ordering to match the order in the text (concurrent is first,
  at least for now).
- Make them go left-to-right instead of top-to-bottom for compactness in
  the text.
- Fix rendering issues resulting from the VS Code extension doing things
  that normal `dot` does not, for who knows what reasons.
2024-07-26 13:39:07 -06:00

20 lines
325 B
Plaintext

digraph {
dpi = 300.0;
rankdir = "LR";
splines = false;
cluster = true;
node [shape = diamond;];
subgraph cluster_ColleagueA {
newrank = true;
label = "Task 1";
A1 -> A2 -> A3 -> A4;
}
subgraph cluster_ColleagueB {
label = "Task 2";
B1 -> B2 -> B3;
}
}