summaryrefslogtreecommitdiff
path: root/Master/texmf/doc/asymptote/examples/monthaxis.asy
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf/doc/asymptote/examples/monthaxis.asy')
-rw-r--r--Master/texmf/doc/asymptote/examples/monthaxis.asy17
1 files changed, 0 insertions, 17 deletions
diff --git a/Master/texmf/doc/asymptote/examples/monthaxis.asy b/Master/texmf/doc/asymptote/examples/monthaxis.asy
deleted file mode 100644
index d2c8bf3298f..00000000000
--- a/Master/texmf/doc/asymptote/examples/monthaxis.asy
+++ /dev/null
@@ -1,17 +0,0 @@
-import graph;
-
-size(400,150,IgnoreAspect);
-
-real[] x=sequence(12);
-real[] y=sin(2pi*x/12);
-
-scale(false);
-
-string[] month={"Jan","Feb","Mar","Apr","May","Jun",
- "Jul","Aug","Sep","Oct","Nov","Dec"};
-
-draw(graph(x,y),red,MarkFill[0]);
-
-xaxis(BottomTop,LeftTicks(new string(real x) {
- return month[round(x % 12)];}));
-yaxis("$y$",LeftRight,RightTicks(4));