diff options
author | Ian Jauslin <jauslin@ias.edu> | 2017-10-26 20:02:17 +0000 |
---|---|---|
committer | Ian Jauslin <jauslin@ias.edu> | 2017-10-26 20:02:17 +0000 |
commit | 7629eb82cc5e05ef514912d9f393d0f42feb8c93 (patch) | |
tree | 49b7730bdc9e1972ba36c9a21d2f40ddfbe84c6c /figs/shapes.fig/hexagon.tikz.tex |
Diffstat (limited to 'figs/shapes.fig/hexagon.tikz.tex')
-rw-r--r-- | figs/shapes.fig/hexagon.tikz.tex | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/figs/shapes.fig/hexagon.tikz.tex b/figs/shapes.fig/hexagon.tikz.tex new file mode 100644 index 0000000..a23b7dc --- /dev/null +++ b/figs/shapes.fig/hexagon.tikz.tex @@ -0,0 +1,37 @@ +\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[color=white](60:1)--++(60:2); +\draw[color=white](60:1)++(1,0)--++(120:2); +\draw[color=white](60:1)++(120:1)--++(2,0); + +\draw(60:1)--++(0:1)--++(60:1)--++(120:1)--++(180:1)--++(240:1)--++(300:1)--cycle; + + +\end{tikzpicture} +\end{document} |