Christophe Weblog Wiki Code Publications Music
figures
[paper-els-specializers.git] / figures / mop-design-space.tikz
1 \documentclass{standalone}
2
3 \usepackage{tikz}
4 \usetikzlibrary{shapes.symbols}
5 \usetikzlibrary{arrows}
6 \usetikzlibrary{calc}
7
8 \begin{document}
9
10 \begin{tikzpicture}[>=stealth]
11   \draw [->] (0,0) -- (0,5);
12   \draw [->] (0,0) -- (5,0);
13   \draw [->] (0,0) -- (0,0,5);
14
15   \node[draw,red,cloud,minimum height=2cm,minimum width=2cm] (mop) at (3,4,3) {$\color{black}\bullet$};
16
17   \node (os) at (2.5,2,3) {object system};
18   \draw (os) -- (mop.center);
19
20   \node[red] (mspace) at (5,6,3) {MOP space};
21   \draw[red] (mspace) -- (mop);
22 \end{tikzpicture}
23
24 \end{document}