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

Source
Show lsystem/fig0040.asy on Github.
Generated with Asymptote 3.00-0.
Categories : Surveys | L-System
Tags : #L-System | #Fractals
import Lsystem; size(15cm,0); Lsystem Koch=Lsystem("+F--F--F", new string[][]{{"F","F+F--F+F"}}, La=60, Lai=0); Koch.iterate(4); filldraw(Koch.paths()[0]&cycle, paleyellow, 1bp+black); shipout(bbox(2mm, Fill(lightyellow)));