aboutsummaryrefslogtreecommitdiff
path: root/img/staggered_grid.tikz
blob: d77b05589dee645b772b364c169f39c2e0314058 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
\begin{tikzpicture}[
	scale=1.0,
	fine/.style={circle,draw=black,thick,inner sep=2},
]

\draw[step=1.0,black] (0.75,0.75) grid (6.25,6.25);
\draw[step=0.5,gray,thin,xshift=1.75cm,yshift=1.75cm] (0,0) grid (3.5,3.5);

\foreach \x in {0,...,7}
	\foreach \y in {0,...,7}
		\node[fine] at (1.75+0.5*\x,1.75+0.5*\y){ };
\end{tikzpicture}