diff options
author | Jan Aalmoes <jan.aalmoes@inria.fr> | 2024-11-07 11:36:14 +0100 |
---|---|---|
committer | Jan Aalmoes <jan.aalmoes@inria.fr> | 2024-11-07 11:36:14 +0100 |
commit | 8bbc035c904791895e2f55245348b9f27af8ea9b (patch) | |
tree | 0332d03c55c27d80095ae5338425ff96c1bb123a /tikz/bin.tex |
initial commit
Diffstat (limited to 'tikz/bin.tex')
-rw-r--r-- | tikz/bin.tex | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tikz/bin.tex b/tikz/bin.tex new file mode 100644 index 0000000..8bfb576 --- /dev/null +++ b/tikz/bin.tex @@ -0,0 +1,18 @@ +\begin{tikzpicture} + + \def \h{4} + + %Donnée utilisateur + \node[rectangle,draw=red] (s) at (2*\h,0) {Attribut sensible}; + + %Pipeline + \node[rectangle,draw=blue] (inf) at (0,0) {Classification}; + + %Attaque + \node[rectangle,draw=blue] (att) at (\h,0) {Attaque}; + + \draw[->,color=blue] (inf) to (att); + \draw[->,color=red] (att) to (s); + +\end{tikzpicture} + |