summaryrefslogtreecommitdiff
path: root/Master/texmf/doc/asymptote/examples/cube.asy
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf/doc/asymptote/examples/cube.asy')
-rw-r--r--Master/texmf/doc/asymptote/examples/cube.asy15
1 files changed, 0 insertions, 15 deletions
diff --git a/Master/texmf/doc/asymptote/examples/cube.asy b/Master/texmf/doc/asymptote/examples/cube.asy
deleted file mode 100644
index acfecfdd7d4..00000000000
--- a/Master/texmf/doc/asymptote/examples/cube.asy
+++ /dev/null
@@ -1,15 +0,0 @@
-import three;
-
-currentprojection=orthographic(5,4,2,center=true);
-
-size(5cm);
-size3(3cm,5cm,8cm);
-
-draw(unitbox);
-
-dot(unitbox,red);
-
-label("$O$",(0,0,0),NW);
-label("(1,0,0)",(1,0,0),S);
-label("(0,1,0)",(0,1,0),E);
-label("(0,0,1)",(0,0,1),Z);