From 72e7fac8be6a0c49a876bb60d0e1f9eb243d7a25 Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Mon, 17 Dec 2018 20:34:31 +0100 Subject: Start tracking bachelor thesis source Some scaffolding as well as the initial port of usable parts from my seminar talk on grid refinement criterions. --- img/multi_domain.tikz | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 img/multi_domain.tikz (limited to 'img/multi_domain.tikz') diff --git a/img/multi_domain.tikz b/img/multi_domain.tikz new file mode 100644 index 0000000..8b9a02c --- /dev/null +++ b/img/multi_domain.tikz @@ -0,0 +1,38 @@ +\begin{tikzpicture}[ + scale=0.4, + coarse/.style={circle,draw=black,inner sep=2pt}, + fine/.style={circle,draw=black,inner sep=1pt} +] + +\foreach \x in {0,...,3} + \foreach \y in {0,...,7} + \node[coarse] at (\x,\y){ }; +\foreach \x in {4,...,7} + \foreach \y in {0,...,2} + \node[coarse] at (\x,\y){ }; +\foreach \x in {4,...,7} + \foreach \y in {5,...,7} + \node[coarse] at (\x,\y){ }; + +\draw (9,3.5) node[cross out,draw=black,line width=0.5mm,rotate=45]{}; + +\foreach \x in {0,...,10} + \foreach \y in {0,...,10} + \node[fine] at (11+0.5*\x,1+0.5*\y){ }; + +\draw[->,line width=0.5mm] (18,3.5) -- (20,3.5); + +\foreach \x in {22,...,25} + \foreach \y in {0,...,7} + \node[coarse] at (\x,\y){ }; +\foreach \x in {26,...,29} + \foreach \y in {0,...,2} + \node[coarse] at (\x,\y){ }; +\foreach \x in {26,...,29} + \foreach \y in {5,...,7} + \node[coarse] at (\x,\y){ }; + +\foreach \x in {0,...,10} + \foreach \y in {0,...,10} + \node[fine] at (24+0.5*\x,1+0.5*\y){ }; +\end{tikzpicture} -- cgit v1.2.3