summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/asymptote/examples/unitcircle3.asy
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/asymptote/examples/unitcircle3.asy')
-rw-r--r--Master/texmf-dist/doc/asymptote/examples/unitcircle3.asy9
1 files changed, 9 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/asymptote/examples/unitcircle3.asy b/Master/texmf-dist/doc/asymptote/examples/unitcircle3.asy
new file mode 100644
index 00000000000..be282011dca
--- /dev/null
+++ b/Master/texmf-dist/doc/asymptote/examples/unitcircle3.asy
@@ -0,0 +1,9 @@
+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);