Hi Tobias,
the fractal image is built of 4 identical parts, so generate the basic part and built it together by an axiom like F+F+F+F with an angle of 90 degrees.
In contrast to the Koch snowflake, not each line is recursively replaced. This can be solved using two different rules.
So here's an approach:
Code: Select all
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{lindenmayersystems}
\begin{document}
\begin{tikzpicture}
\draw [l-system={rule set={G -> F-G+G+G-F, F -> FF}, step=2pt, angle=90,
axiom=G+G+G+G, order=3}] lindenmayer system -- cycle;
\end{tikzpicture}
\end{document}
The versions up to level 4, scaling omitted:

- fractal.png (3.79 KiB) Viewed 5680 times
It still seems to need a bit of adjusting line lengths, to exact match the image.
Stefan