Ian Jauslin
summaryrefslogtreecommitdiff
blob: 7429e95f3a7e0c082f0fa5d8c214e55e7020fbf3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
\documentclass{standalone}

\usepackage{tikz}
\usepackage{shapes}

\begin{document}
\begin{tikzpicture}
  \foreach\k in {0,...,5}{
    \cross{teal}{(2*\k,\k)}
    \cross{teal}{(-\k,2*\k)}
    \cross{teal}{(-5,10)++(2*\k,\k)}
    \cross{teal}{(5,15)++(\k,-2*\k)}
  }
  \foreach\k in {0,...,2}{
    \foreach\l in {0,...,1}{
      \cross{green}{(3,5)++(\k,2*\k)++(-2*\l,\l)}
    }
  }
  \cross{green}{(-1,7)}
  \cross{green}{(0,9)}
  \cross{green}{(6,6)}
  \cross{teal}{(4,12)}
  \cross{teal}{(1,3)}

  \square{black}{(3,3)}
  \square{black}{(2,4)}
  \square{black}{(4,4)}
  \square{black}{(5,4)}
  \square{black}{(5,5)}
  \square{black}{(7,5)}
  \square{black}{(8,6)}
  \square{black}{(7,7)}
  \square{black}{(7,8)}
  \square{black}{(6,8)}
  \square{black}{(6,10)}
  \square{black}{(5,11)}
  \square{black}{(2,12)}
  \square{black}{(2,11)}
  \square{black}{(1,11)}
  \square{black}{(0,11)}
  \square{black}{(1,10)}
  \square{black}{(-1,10)}
  \square{black}{(-2,10)}
  \square{black}{(-2,9)}
  \square{black}{(-3,9)}
  \square{black}{(-2,8)}
  \square{black}{(-1,5)}
  \square{black}{(0,5)}
  \square{black}{(0,4)}
\end{tikzpicture}
\end{document}