summaryrefslogtreecommitdiff
path: root/Master/texmf/doc/asymptote/examples/unitcircle3.asy
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf/doc/asymptote/examples/unitcircle3.asy')
-rw-r--r--Master/texmf/doc/asymptote/examples/unitcircle3.asy9
1 files changed, 0 insertions, 9 deletions
diff --git a/Master/texmf/doc/asymptote/examples/unitcircle3.asy b/Master/texmf/doc/asymptote/examples/unitcircle3.asy
deleted file mode 100644
index be282011dca..00000000000
--- a/Master/texmf/doc/asymptote/examples/unitcircle3.asy
+++ /dev/null
@@ -1,9 +0,0 @@
-import three;
-
-size(100);
-
-path3 g=(1,0,0)..(0,1,0)..(-1,0,0)..(0,-1,0)..cycle;
-draw(g);
-draw(O--Z,red+dashed,Arrow3);
-draw(((-1,-1,0)--(1,-1,0)--(1,1,0)--(-1,1,0)--cycle));
-dot(g,red);