aboutsummaryrefslogtreecommitdiff
path: root/slides/2019-it-intro-computer-systems/img/performance.tex
blob: 5f4e816cde6307554dbfb8554901442e6ba9ad07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
\begin{tikzpicture}[
  arrow/.style = {
    draw,
    -latex,
  },
  plain/.style = {
    draw=none,
  }
]
  \coordinate(o) at (0,0);
  \coordinate(y) at (0,4);
  \coordinate(x) at (6,0);

  \coordinate(c1) at (0.5,0.5);
  \coordinate(c2) at (5.5,3);

  \path[arrow] (o) -- node[plain, below, pos=0.9]{time} (x);
  \path[arrow] (o) -- node[plain, above, pos=1]{performance} (y);
  \path[arrow] (c1) -- (c2);
\end{tikzpicture}