summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/tufte-latex/graphics/sine2.asy
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/latex/tufte-latex/graphics/sine2.asy')
-rw-r--r--Master/texmf-dist/doc/latex/tufte-latex/graphics/sine2.asy24
1 files changed, 0 insertions, 24 deletions
diff --git a/Master/texmf-dist/doc/latex/tufte-latex/graphics/sine2.asy b/Master/texmf-dist/doc/latex/tufte-latex/graphics/sine2.asy
deleted file mode 100644
index a8a79f53dc2..00000000000
--- a/Master/texmf-dist/doc/latex/tufte-latex/graphics/sine2.asy
+++ /dev/null
@@ -1,24 +0,0 @@
-import graph;
-
-usepackage("palatino");
-usepackage("mathpazo");
-
-size(7inches,3inches);
-scale(true);
-
-real f(real x) { return sin(x); }
-pair F(real x) { return (x, f(x)); }
-
-real g(real x) { return sin(2x); }
-pair G(real x) { return (x, g(x)); }
-
-real h(real x) { return sin(0.5x); }
-pair H(real x) { return (x, h(x)); }
-
-xaxis("$x$");
-yaxis("$y$");
-
-draw(graph(f,-10.,10,operator ..), red);
-draw(graph(g,-10.,10,operator ..), blue);
-draw(graph(h,-10.,10,operator ..), green);
-