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

function f(x) { y =  x  ; return y }
function g(x) { y = x-1; return y }

aX = -1.5; bX = 1.5; aY = -1.5; bY = 1.5
Dx = 0.5; Dy = 0.5

xx=[0,1]

i=0
for(j=0;j<2e4;j=j+1) {xp=Math.random()*(bX-aX)+aX; yp=Math.random()*(bY-aY)+aY
                    if(yp < xp && xp-yp < 1 && 0 < xp && xp < 1) {QQ1x[i]=xp; QQ1y[i]=yp; i=i+1} }