summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/asymptote/examples/axis3.asy
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/asymptote/examples/axis3.asy')
-rw-r--r--Master/texmf-dist/doc/asymptote/examples/axis3.asy12
1 files changed, 12 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/asymptote/examples/axis3.asy b/Master/texmf-dist/doc/asymptote/examples/axis3.asy
new file mode 100644
index 00000000000..90cbdc6ad09
--- /dev/null
+++ b/Master/texmf-dist/doc/asymptote/examples/axis3.asy
@@ -0,0 +1,12 @@
+import graph3;
+
+size(0,200);
+size3(200,IgnoreAspect);
+
+currentprojection=perspective(5,2,2);
+
+scale(Linear,Linear,Log);
+
+xaxis3("$x$",0,1,red,OutTicks(2,2));
+yaxis3("$y$",0,1,red,OutTicks(2,2));
+zaxis3("$z$",1,30,red,OutTicks(beginlabel=false));