Figure Asymptote lsystem -- 008
🔗This picture comes from the Asymptote gallery of topic lsystem

Source.
Show lsystem/fig0080.asy on Github.
Generated with Asymptote 3.00-0.
Categories : Surveys | L-System
Tags : #L-System | #Fractals
import Lsystem; size(10cm,0); Lsystem HilbertCurve=Lsystem("X", new string[][]{{"X","-YF+XFX+FY-"},{"Y","+XF-YFY-FX+"}}, La=90, Lai=0); HilbertCurve.iterate(6); draw(HilbertCurve.paths(), linewidth(1bp)); shipout(bbox(Fill(lightgrey)));