summaryrefslogtreecommitdiff
path: root/Master/texmf/doc/asymptote/examples/parametricgraph.asy
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf/doc/asymptote/examples/parametricgraph.asy')
-rw-r--r--Master/texmf/doc/asymptote/examples/parametricgraph.asy16
1 files changed, 0 insertions, 16 deletions
diff --git a/Master/texmf/doc/asymptote/examples/parametricgraph.asy b/Master/texmf/doc/asymptote/examples/parametricgraph.asy
deleted file mode 100644
index a5688a6f9dd..00000000000
--- a/Master/texmf/doc/asymptote/examples/parametricgraph.asy
+++ /dev/null
@@ -1,16 +0,0 @@
-import graph;
-
-size(0,200);
-
-real x(real t) {return cos(2pi*t);}
-real y(real t) {return sin(2pi*t);}
-
-draw(graph(x,y,0,1));
-
-//xlimits(0,1,Crop);
-//ylimits(-1,0,Crop);
-
-xaxis("$x$",BottomTop,LeftTicks);
-yaxis("$y$",LeftRight,RightTicks(trailingzero));
-
-