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

Show lsystem/fig0050.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+F+F", new string[][]{{"F","F-F++F-F"}}, La=72); Koch.iterate(4); filldraw(Koch.paths()[0]&cycle, paleyellow, 1bp+black); shipout(bbox(2mm, Fill(lightyellow)));