Fixes to wave loop

main
parent b4325a5e12
commit 27fe49443d

Binary file not shown.

@ -6,7 +6,8 @@
el/.style = {inner sep=5pt, font=\normalsize, align=center, sloped},
state/.style = {minimum size=2.5cm, circle, draw=black, fill=white}, %node styles
plain/.style = {rectangle, fill=white},
wave/.style = {draw, rectangle, inner sep=10, font=\large}
wave/.style = {draw, rectangle, inner sep=10, font=\large},
path/.style = {color=blue}
% every label/.append style = {font=\tiny}, unused node labels
]
@ -16,9 +17,9 @@
\node (futures) [plain, left=of waves, yshift=-1cm] {Statistical Futures};
\node (natural) [plain, right=of waves, yshift=1.5cm] {Virus as natural/organic event};
\node (govt) [plain, red, fill=white, right=of waves, yshift=0.5cm] {Govt action obscured};
\node (individual) [plain, right=of waves, yshift=-0.5cm] {Individual Responsibility};
\node (death) [plain, right=of waves, yshift=-1.5cm] {Death Calculus};
\node (govt) [plain, fill=white, right=of waves, yshift=0.5cm] {Who can swim?};
\node (individual) [plain, right=of waves, yshift=-0.5cm] {Individual responsibility};
\node (death) [plain, right=of waves, yshift=-1.5cm] {Death calculus};
% PULL & PUSH
\node (pull) [plain, above=of waves, xshift=-1cm] {PULL};
@ -28,13 +29,13 @@
\draw [dashed] (0,-1) -- (0,-3);
% Connections
\path[->, out=-70, in=-170] (pasts) edge (waves);
\path[->, out=70, in=-190] (futures) edge (waves);
\path[->, out=-70, in=-170, color=blue] (pasts) edge (waves);
\path[->, out=70, in=-190, color=blue] (futures) edge (waves);
\path[->, out=15, in=-180] (waves) edge (natural);
\path[->, out=5, in=-180] (waves) edge (govt);
\path[->, out=-5, in=-180] (waves) edge (individual);
\path[->, out=-15, in=-180] (waves) edge (death);
\path[->, out=15, in=-180, color=blue] (waves) edge (natural);
\path[->, out=5, in=-180, color=blue] (waves) edge (govt);
\path[->, out=-5, in=-180, color=blue] (waves) edge (individual);
\path[->, out=-15, in=-180, color=blue] (waves) edge (death);
% \path[<->, >={Stealth[scale=1]}, out=0, in=0, looseness=3]
% (natural.east) edge (govt.east)
@ -42,8 +43,8 @@
% (individual.east) edge (death.east);
% Loop back
\path[->, shorten < = 10pt] (natural) edge [bend right=45] (pasts);
\path[->, shorten < = 10pt] (death) edge [bend left=45] (futures.south);
\path[->, shorten < = 10pt, color=blue] (natural) edge [bend right=45] (pasts);
\path[->, shorten < = 10pt, color=blue] (death) edge [bend left=45] (futures.south);
% \path[->]
% (pasts.east) edge [bend right=5] (waves.west)
% (futures.east) edge [bend left=5] (waves.west);

Loading…
Cancel
Save