Puoi aprire il codice e modificare la funzione: vedi l'Help
You can open the Code and modify the function: see the Help
HELP

Folium of Descartes:  x = t/(1+t^3), y = t^2/(1+t^3),  t in  (-∞, ∞)

function f(x) { y = 1/0; return y }
...
aX = -0.7; bX = 0.7; aY = -0.7; bY = 0.7
Dx = 0.1; Dy = 0.1
...
xx=yy=[-0.5,0.5]
...
function XX(t) {x=t/(1+t*t*t); if(Ix(x)<1){x=1/0}; return x}
function YY(t) {y=t*t/(1+t*t*t); if(Iy(y)<1){y=1/0}; return y}; t1=-100; t2=80
for(j=0;j<=5e3;j=j+1) {t=t1+(t2-t1)/5e3*(j-1);Lx[j]=XX(t);Ly[j]=YY(t)}
...