Figure Asymptote graph3 -- 013
🔗This picture comes from the Asymptote gallery of topic graph3

From TeXgraph exemples.
Show graph3/fig0130.asy on Github.
Generated with Asymptote 3.00-0.
Categories : Examples 3D | Graph3.asy
Tags : #Graph (3D) | #Palette | #Surface | #Shading (3D)
settings.render=0; import graph3; import palette; size(10cm,0); currentprojection=orthographic(2,-2,2.5); real f(pair z) { real u=z.x, v=z.y; return (u/2+v)/(2+cos(u/2)*sin(v)); } surface s=surface(f,(0,0),(14,14),150,Spline); draw(s,mean(palette(s.map(zpart),Gradient(yellow,red)))); if(!is3D()) shipout(bbox(3mm,Fill(black)));