Puoi aprire il codice e modificarlo
HELP

...
function ro(a) {r = Math.exp(Math.sin(a)) - 2*Math.cos(4*a) + Math.pow( Math.sin((2*a-Math.PI)/24), 5); return r}
C0="red"
n=200; H = 2*Math.PI/n
for(i=0;i<=3*n; i=i+1) { t = H*i
L0x[i]= ro(t)*Math.cos(t)
L0y[i]= ro(t)*Math.sin(t)       }
...