summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/asymptote/examples/RiemannSurface.asy
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/asymptote/examples/RiemannSurface.asy')
-rw-r--r--Master/texmf-dist/doc/asymptote/examples/RiemannSurface.asy6
1 files changed, 3 insertions, 3 deletions
diff --git a/Master/texmf-dist/doc/asymptote/examples/RiemannSurface.asy b/Master/texmf-dist/doc/asymptote/examples/RiemannSurface.asy
index a1f1b665089..92f94bdc721 100644
--- a/Master/texmf-dist/doc/asymptote/examples/RiemannSurface.asy
+++ b/Master/texmf-dist/doc/asymptote/examples/RiemannSurface.asy
@@ -1,13 +1,13 @@
import graph3;
import palette;
-
+
size(200,300,keepAspect=false);
//settings.nothin=true;
-
+
currentprojection=orthographic(10,10,30);
currentlight=(10,10,5);
triple f(pair t) {return (exp(t.x)*cos(t.y),exp(t.x)*sin(t.y),t.y);}
-
+
surface s=surface(f,(-4,-2pi),(0,4pi),8,16,Spline);
s.colors(palette(s.map(zpart),Rainbow()));
draw(s,render(merge=true));