Consider the following MWE, which I found here:
\documentclass{article} \usepackage{tikz} \usetikzlibrary{decorations.fractals} \begin{document} \begin{tikzpicture}[decoration=Koch snowflake] \draw decorate{ decorate{ decorate{ decorate{ (0,0) -- (3,0) }}}}; \end{tikzpicture} \end{document}
How do I extend it in order to draw the entire fractal?
Thank you in advance!
P.S. I have never used TikZ before.