Ian Jauslin
summaryrefslogtreecommitdiff
blob: 5439f679e3c7c0ca38a95b2d3b6a63d893fb6feb (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
\documentclass{standalone}

\usepackage{tikz}
\usepackage{shapes}

\begin{document}
\begin{tikzpicture}

\draw(0,0)--++(2,0);
\draw(120:1)--++(3,0);
\draw(120:2)--++(4,0);
\draw(120:2)++(60:1)--++(3,0);
\draw(120:2)++(60:2)--++(2,0);

\draw(0,0)--++(60:4);
\draw(1,0)--++(60:3);
\draw(2,0)--++(60:2);
\draw(120:1)--++(60:3);
\draw(120:2)--++(60:2);

\draw(0,0)--++(120:2);
\draw(1,0)--++(120:3);
\draw(2,0)--++(120:4);
\draw(2,0)++(60:1)--++(120:3);
\draw(2,0)++(60:2)--++(120:2);

\fill[color=teal](60:1)--++(0:1)--++(60:1)--++(120:1)--++(180:1)--++(240:1)--++(300:1)--cycle;
\draw(60:1)--++(0:1)--++(60:1)--++(120:1)--++(180:1)--++(240:1)--++(300:1)--cycle;


\end{tikzpicture}
\end{document}