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

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