¦^§@·~12

> restart;

> a:=plot3d(4-sqrt(abs(x*y)),x=-2..2,y=-2..2,scaling=constrained):

> a;

[Maple Plot]

> x:=r*cos(t);

x := r*cos(t)

> y:=r*sin(t);

y := r*sin(t)

> z:=4-sqrt(abs(x*y));

z := 4-sqrt(abs(r^2*cos(t)*sin(t)))

> b:=plot3d([x,y,z],r=0..2,t=0..2*Pi,scaling=constrained,grid=[20,101]):

> b;

[Maple Plot]

> with(plottools):

> vrml(a,"c:/042/12/12-10.wrl",background_color=white);

> vrml(b,"c:/042/12/12-10'.wrl",background_color=white);

>