#le adaptative=True semble incompatible avec le region=...
h(x,y)=(2*x^2 - y^2)/(x^2+y^2)
eps=0.001
dessin = plot3d(h, (x,-2,2), (y,-2,2), \
mesh=True,\
region=lambda x,y,z: (abs(x)>=eps) and (abs(y)>=eps),\
plot_points=400,\
color='blue'\
)
#, aspect_ratio=[1,1,1])
#lepoint = point3d((1,2,-3),size=35,color='black',opacity=1)
#lafleche = arrow3d((1,2,-3), (1+3/2,2+4/2,-3), radius=0.1,color="red")
show(html("<h3>exo 1 : étude de la régularité d'une fonction</h3>"))
show(html("bien voir les lignes x=0 et y=0"))
(dessin).show(aspect_ratio = 1, ymin = -3, ymax = 3)