Puoi aprire il codice e modificarlo
HELP

...
aX = 0; bX = 10; aY = 0; bY = 4
Dx = 1; Dy = 1

titolo = "cerchio ed ellisse"
...
C8="red"
xcentro=3; ycentro=2; raggio1=1.5; raggio2=1.5
function xellisse(t) {x=xcentro+raggio1*Math.cos(t); return x}
function yellisse(t) {y=ycentro+raggio2*Math.sin(t); return y}; t1=0; t2=6.29
for(j=0; j<=5e3; j=j+1) {t=t1+(t2-t1)/5e3*(j-1); L8x[j]=xellisse(t); L8y[j]=yellisse(t)}
C9="black"
xcentroA=7; ycentroA=2; raggio1A=2; raggio2A=1.5
function xellisseA(t) {x=xcentroA+raggio1A*Math.cos(t); return x}
function yellisseA(t) {y=ycentroA+raggio2A*Math.sin(t); return y}; tA1=0; tA2=6.29
for(j=0; j<=5e3; j=j+1) {t=tA1+(tA2-tA1)/5e3*(j-1); L9x[j]=xellisseA(t); L9y[j]=yellisseA(t)}

function f(x) { y = 1/0; return y } 
function g(x) { y = 1/0; return y }
...