Ian Jauslin
summaryrefslogtreecommitdiff
blob: 1951f8b2efa02069f2800ce1a7e5ceb18f944120 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
\documentclass{standalone}

\usepackage{tikz}
\usepackage{shapes}

\begin{document}
\begin{tikzpicture}
\clip(-1.01,-1.01)--(7.01,-1.01)--(7.01,5.01)--(-1.01,5.01)--cycle;
\foreach \i in {0,...,3}{
  \ttsquare{cyan}{(2*\i,0)}
  \ttsquare{cyan}{(2*\i+1,2)}
  \ttsquare{cyan}{(2*\i,4)}
}
\ttsquare{cyan}{(-1,2)}
\end{tikzpicture}
\end{document}