summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/asymptote/examples/axis3.asy
blob: 90cbdc6ad09c195a94b86effef387f248d011876 (plain)
1
2
3
4
5
6
7
8
9
10
11
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));