2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-19 11:38:05 +02:00
LaTeX-examples/tikz/koch-snowflake/koch-snowflake.tex
2016-12-22 21:52:49 +01:00

15 lines
672 B
TeX

\documentclass[varwidth=true, border=2pt]{standalone}
\usepackage{tikz}
\usetikzlibrary{decorations.fractals}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}[scale=3,decoration=Koch snowflake]
% \draw[fill=gray!10] { { { { (0,0) -- (3,0) -- (1.5,-3) -- (0,0)}}}};
% \draw[fill=gray!10] { { { decorate{ (0,0) -- (3,0) -- (1.5,-3) -- (0,0)}}}};
% \draw[fill=gray!10] { { decorate{ decorate{ (0,0) -- (3,0) -- (1.5,-3) -- (0,0)}}}};
% \draw[fill=gray!10] { decorate{ decorate{ decorate{ (0,0) -- (3,0) -- (1.5,-3) -- (0,0)}}}};
\draw[fill=gray!10] decorate{ decorate{ decorate{ decorate{ (0,0) -- (3,0) -- (1.5,-3) -- (0,0)}}}};
\end{tikzpicture}
\end{document}