summaryrefslogtreecommitdiff
path: root/Master/texmf/doc/asymptote/examples/filesurface.asy
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf/doc/asymptote/examples/filesurface.asy')
-rw-r--r--Master/texmf/doc/asymptote/examples/filesurface.asy15
1 files changed, 13 insertions, 2 deletions
diff --git a/Master/texmf/doc/asymptote/examples/filesurface.asy b/Master/texmf/doc/asymptote/examples/filesurface.asy
index 702b503fc28..98adc045f07 100644
--- a/Master/texmf/doc/asymptote/examples/filesurface.asy
+++ b/Master/texmf/doc/asymptote/examples/filesurface.asy
@@ -26,9 +26,20 @@ draw(s,meshpen=thick());
triple m=currentpicture.userMin;
triple M=currentpicture.userMax;
triple target=0.5*(m+M);
-currentprojection=perspective(camera=target+realmult(dir(68,225),M-m),
- target=target);
xaxis3("$x$",Bounds,InTicks);
yaxis3("$y$",Bounds,InTicks(Step=1,step=0.1));
zaxis3("$z$",Bounds,InTicks);
+
+/*
+picture palette;
+size3(palette,1cm);
+draw(palette,unitcube,red);
+frame F=palette.fit3();
+add(F,(M.x,m.y,m.z));
+*/
+
+currentprojection=perspective(camera=target+realmult(dir(68,225),M-m),
+ target=target);
+
+