/* Une rosace */ import graph; size(7.5cm,0); real a=2, exc=.8, n=9/4; real f(real t) {return a*(1+exc*cos(n*t));} path g=polargraph(f,0,8pi,800,operator ..)--cycle; filldraw(g,lightgreen+white);