summaryrefslogtreecommitdiff
path: root/graphics/asymptote/doc/exp.asy
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2020-11-24 03:01:06 +0000
committerNorbert Preining <norbert@preining.info>2020-11-24 03:01:06 +0000
commit55c6d66f61a96ba63cd8c141229843ad2ab42632 (patch)
tree64fa3f4bc82828c2475a6a25d23a02cb36502b95 /graphics/asymptote/doc/exp.asy
parentf0be59ccfa7046c57199fe35c49e1e8963fcb1a9 (diff)
CTAN sync 202011240301
Diffstat (limited to 'graphics/asymptote/doc/exp.asy')
-rw-r--r--graphics/asymptote/doc/exp.asy4
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/asymptote/doc/exp.asy b/graphics/asymptote/doc/exp.asy
index 2c4eed90d4..3558a2759b 100644
--- a/graphics/asymptote/doc/exp.asy
+++ b/graphics/asymptote/doc/exp.asy
@@ -4,11 +4,11 @@ size(150,0);
real f(real x) {return exp(x);}
pair F(real x) {return (x,f(x));}
+draw(graph(f,-4,2,operator ..),red);
+
xaxis("$x$");
yaxis("$y$",0);
-draw(graph(f,-4,2,operator ..),red);
-
labely(1,E);
label("$e^x$",F(1),SE);