summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/asymptote/examples/sphere.asy
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/asymptote/examples/sphere.asy')
-rw-r--r--Master/texmf-dist/doc/asymptote/examples/sphere.asy6
1 files changed, 6 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/asymptote/examples/sphere.asy b/Master/texmf-dist/doc/asymptote/examples/sphere.asy
new file mode 100644
index 00000000000..8d1b5fe50cd
--- /dev/null
+++ b/Master/texmf-dist/doc/asymptote/examples/sphere.asy
@@ -0,0 +1,6 @@
+import three;
+
+size(200);
+currentprojection=orthographic(5,4,3);
+
+draw(unitsphere,green,render(compression=Zero,merge=true));