commit ecb52e7441c0ae20de3e3c2f1dfa07b651c3c39f
parent 2bb1daba14084ef422c99ad3af9ae0e6353ec9c9
Author: Bertrand BRUN <bertrand0brun@gmail.com>
Date: Mon, 23 May 2011 17:41:58 +0200
Merge branch 'unstable' of https://github.com/jsmaniac/2011-m1s2-ter into unstable
Diffstat:
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/presentation/presentation.tex b/presentation/presentation.tex
@@ -297,19 +297,19 @@ Avez-vous des questions~?
\begin{frame}
\begin{tikzpicture}[
state/.style={draw, text width=2.3cm},
- transition/.style={dashed,->}
+ transition/.style={->}
]
\node[state] (frontpage) {\begin{center}Page de garde\end{center}};
- \node[state, below=of frontpage] (game) {\begin{center}Jeu\end{center}};
- \node[state, below=of game] (score) {\begin{center}Score\end{center}};
+ \node[state, right=of frontpage] (game) {\begin{center}Jeu\end{center}};
+ \node[state, right=of game] (score) {\begin{center}Score\end{center}};
\draw[transition] (frontpage) -- (game);
\draw[transition] (game) -- (score);
- \draw[transition] (score) -- ++(-2cm,0) |- (frontpage);
- \draw[transition] (game.north east) ++(-0.3cm,0) arc (180:-90:0.3cm);
+ \draw[transition] (score.south) -- ++(0,-0.3cm) -| (frontpage);
+ \draw[transition,<-] (game.north) -- ++(0,0.3cm) -| ($.5*(game) + .5*(score)$);
- \node[state,text width=1.2cm, right=of frontpage] (activite) {Activité};
- \draw[transition] ($(activite.south)+(-.75cm,-.5cm)$) -- node[auto,swap,font=\footnotesize,scale=0.8] {\shortstack{\shortstack{Évènement\\(Intent)}}} ($(activite.south)+(.75cm,-.5cm)$);
+ \node[state,text width=1.2cm, below=of frontpage] (activite) {Activité};
+ \draw[transition] (activite.north east) ++(0.5cm,0) -- node[auto,swap,font=\footnotesize,scale=0.8] {\shortstack{\shortstack{Évènement\\(Intent)}}} ++(1.5cm,0);
\end{tikzpicture}
\end{frame}