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

Show lsystem/fig0110.asy on Github.
Generated with Asymptote 3.00-0.
Categories : Surveys | L-System
Tags : #L-System | #Fractals
import Lsystem; size(15cm,0); string[][] rules={{"F","FF"}, {"H","+F+FH++FFH++F+FF+FH++FFH++F+F-"}}; Lsystem H=Lsystem("+H",rules, La=90); H.iterate(5); draw(H.paths(), white); shipout(bbox(3mm, Fill(black)));