Ian Jauslin
summaryrefslogtreecommitdiff
blob: 297e72e78af48e70347154ddb3caa04315128a6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
\documentclass{standalone}

\usepackage{tikz}
\usepackage{shapes}

\begin{document}
\begin{tikzpicture}
\foreach \i in {0,...,3}{
  \ttsquare{teal}{(2*\i,0)}
  \ttsquare{teal}{(2*\i,2)}
  \ttsquare{teal}{(2*\i,4)}
}
\grid86{[color=red, dashed](-1,-1)}
\foreach \i in {0,...,3}{
  \ttsquareempty{(2*\i,0)}
  \ttsquareempty{(2*\i,2)}
  \ttsquareempty{(2*\i,4)}
}
\end{tikzpicture}
\end{document}