diff options
Diffstat (limited to 'Master/texmf/doc/asymptote/examples/spiral.asy')
-rw-r--r-- | Master/texmf/doc/asymptote/examples/spiral.asy | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Master/texmf/doc/asymptote/examples/spiral.asy b/Master/texmf/doc/asymptote/examples/spiral.asy new file mode 100644 index 00000000000..a417ea06a7f --- /dev/null +++ b/Master/texmf/doc/asymptote/examples/spiral.asy @@ -0,0 +1,12 @@ +size(0,150); +import graph; + +real f(real t) {return exp(-t/(2pi));} + +draw(polargraph(f,0,20*pi,operator ..)); + +xaxis("$x$",-infinity,1.3); +yaxis("$y$",-infinity,1); + +labelx(1); +labelx("$e^{-1}$",1.0/exp(1),SE); |