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

Show lsystem/fig0170.asy on Github.
Generated with Asymptote 3.00-0.
Categories : Surveys | L-System
Tags : #L-System | #Fractals
import Lsystem; size(10cm,0); string[][] rules={ {"F", "F+f-FF+F+FF+Ff+FF-f+FF-F-FF-Ff-FFF"}, {"f", "ffffff"} }; Lsystem oer=Lsystem("F+F+F+F",rules,La=91); oer.iterate(2); draw(oer.paths(), bp+0.8*yellow); shipout(bbox(2mm, Fill(black)));