summaryrefslogtreecommitdiff
path: root/Build/source/utils/asymptote/doc/datagraph.asy
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/utils/asymptote/doc/datagraph.asy')
-rw-r--r--Build/source/utils/asymptote/doc/datagraph.asy12
1 files changed, 0 insertions, 12 deletions
diff --git a/Build/source/utils/asymptote/doc/datagraph.asy b/Build/source/utils/asymptote/doc/datagraph.asy
deleted file mode 100644
index 62cca8ea896..00000000000
--- a/Build/source/utils/asymptote/doc/datagraph.asy
+++ /dev/null
@@ -1,12 +0,0 @@
-import graph;
-
-size(200,150,IgnoreAspect);
-
-real[] x={0,1,2,3};
-real[] y=x^2;
-
-draw(graph(x,y),red);
-
-xaxis("$x$",BottomTop,LeftTicks);
-yaxis("$y$",LeftRight,
- RightTicks(Label(fontsize(8pt)),new real[]{0,4,9}));