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

Source.
Show lsystem/fig0120.asy on Github.
Generated with Asymptote 3.00-0.
Categories : Surveys | L-System
Tags : #L-System | #Fractals
import Lsystem; size(10cm,0); string[][] rules=new string[][]{{"F",""},{"X","-FX++FY-"},{"Y","+FX--FY+"}}; Lsystem dragon=Lsystem("X",rules, La=45, Lai=0); dragon.iterate(12); draw(dragon.paths(), white); shipout(bbox(3mm, Fill(black)));