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

From TeXgraph exemples.
Show graph3/fig0140.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(15cm,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),50,Spline); s.colors(palette(s.map(zpart),Gradient(yellow,red))); draw(s); if(!is3D()) shipout(bbox(3mm,Fill(black)));