summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/asymptote/examples/extrudedcontour.asy
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/asymptote/examples/extrudedcontour.asy')
-rw-r--r--Master/texmf-dist/doc/asymptote/examples/extrudedcontour.asy26
1 files changed, 26 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/asymptote/examples/extrudedcontour.asy b/Master/texmf-dist/doc/asymptote/examples/extrudedcontour.asy
new file mode 100644
index 00000000000..dabd56b9298
--- /dev/null
+++ b/Master/texmf-dist/doc/asymptote/examples/extrudedcontour.asy
@@ -0,0 +1,26 @@
+import contour;
+import palette;
+import graph3;
+
+defaultrender.merge=true;
+
+currentprojection=orthographic(25,10,10);
+size(0,12cm);
+real a=3;
+real b=4;
+real f(pair z) {return (z.x+z.y)/(2+cos(z.x)*sin(z.y));}
+guide[][] g=contour(f,(-10,-10),(10,10),new real[]{8},150);
+
+render render=render(merge=true);
+for(guide p:g[0]){
+ draw(extrude(p,8Z),palered,render);
+ draw(path3(p),red+2pt,render);
+}
+
+draw(lift(f,g),red+2pt,render);
+
+surface s=surface(f,(0,0),(10,10),20,Spline);
+s.colors(palette(s.map(zpart),Rainbow()+opacity(0.5)));
+draw(s,render);
+axes3("$x$","$y$","$z$",Arrow3);
+