feat(connector): update abstract layout of project

This commit is contained in:
Anthony Berg
2024-05-07 13:10:04 +01:00
parent fd61bd0197
commit a6faa4dd12
3 changed files with 7 additions and 9 deletions

View File

@@ -5,15 +5,13 @@
\begin{figure}[!h] \begin{figure}[!h]
\centering \centering
\begin{tikzpicture} [align=center, node distance=4cm] \begin{tikzpicture} [align=center, node distance=4cm]
\node (connector) [box] {Checklist Tester Interface}; \node (connector) [box] {Checklist Tester};
\node (server) [box, below of=connector] {Checklist Tester Server}; \node (plugin) [box, right of=connector] {X-Plane Connect};
\node (plugin) [box, right of=server] {Simulator Connector Plugin}; \node (formal) [box, left of=connector] {Formal Method};
\node (formal) [box, left of=server] {Formal Method}; \node (simulator) [box, below=0.75cm of plugin] {X-Plane 12};
\node (simulator) [box, below of=plugin] {Flight Simulator};
\draw [arrow] (server) -- (connector); \draw [arrow] (formal) -- (connector);
\draw [arrow] (formal) -- (server); \draw [arrow] (plugin) -- (connector);
\draw [arrow] (plugin) -- (server);
\draw [arrow] (plugin) -- (simulator); \draw [arrow] (plugin) -- (simulator);
\end{tikzpicture} \end{tikzpicture}
\caption{Abstract layout of components} \caption{Abstract layout of components}

Binary file not shown.

View File

@@ -12,7 +12,7 @@
\usepackage{xcolor} \usepackage{xcolor}
\usepackage{tikz} \usepackage{tikz}
\usetikzlibrary{shapes.geometric, arrows} \usetikzlibrary{shapes.geometric, arrows, positioning}
\tikzstyle{box} = [rectangle, minimum width=3cm, minimum height=1cm, text centered, text width=3cm, draw=black] \tikzstyle{box} = [rectangle, minimum width=3cm, minimum height=1cm, text centered, text width=3cm, draw=black]
\tikzstyle{arrow} = [thick,<->,>=stealth] \tikzstyle{arrow} = [thick,<->,>=stealth]