blob: 61ea43dc86ca747b0f0d7ee8080db0a6488c7425 (
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
|
\documentclass{standalone}
\usepackage{tikz}
\usepackage{shapes}
\begin{document}
\begin{tikzpicture}
\grid{8}{15}{(-4,-4)}
\ttsquare{teal}{(0,0)}
\ttsquare{teal}{(0,7)}
\ttsquare{cyan}{( 0, 2)}
\ttsquare{cyan}{( 0,-2)}
\ttsquare{cyan}{( 2, 0)}
\ttsquare{cyan}{(-2, 0)}
\ttsquare{cyan}{( 0, 9)}
\ttsquare{cyan}{( 0, 5)}
\ttsquare{cyan}{( 2, 7)}
\ttsquare{cyan}{(-2, 7)}
\end{tikzpicture}
\end{document}
|