summaryrefslogtreecommitdiff
path: root/Master/texmf/doc/asymptote/examples/annotation.asy
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf/doc/asymptote/examples/annotation.asy')
-rw-r--r--Master/texmf/doc/asymptote/examples/annotation.asy13
1 files changed, 0 insertions, 13 deletions
diff --git a/Master/texmf/doc/asymptote/examples/annotation.asy b/Master/texmf/doc/asymptote/examples/annotation.asy
deleted file mode 100644
index d52e15b4f76..00000000000
--- a/Master/texmf/doc/asymptote/examples/annotation.asy
+++ /dev/null
@@ -1,13 +0,0 @@
-import annotate;
-settings.outformat="pdf";
-
-size(200);
-
-draw(unitcircle);
-dot((0,0));
-annotate("O","(0,0)",(0,0));
-annotate("A","(1,0)",(1,0));
-annotate("B","(0,1)",(0,1));
-annotate("C","(-1,0)",(-1,0));
-annotate("D","(0,-1)",(0,-1));
-