Puoi aprire il codice e modificarlo
HELP
...
aX = -7; bX = 7; aY = -7; bY = 7
Dx = 1; Dy = 1
titolo = "ranuncolo"
...
// curve in forma parametrica / curves in parametric form
...
function XX(t) {x=6*Math.cos(t)-Math.cos(6*t); return x}
function YY(t) {y=6*Math.sin(t)-Math.sin(6*t); return y}; t1=0; t2=6.29
for(j=0;j<=5e3;j=j+1) {t=t1+(t2-t1)/5e3*(j-1);L1x[j]=XX(t);L1y[j]=YY(t)}
...