summaryrefslogtreecommitdiff
path: root/Master/texmf/doc/asymptote/examples/sphereskeleton.asy
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf/doc/asymptote/examples/sphereskeleton.asy')
-rw-r--r--Master/texmf/doc/asymptote/examples/sphereskeleton.asy9
1 files changed, 9 insertions, 0 deletions
diff --git a/Master/texmf/doc/asymptote/examples/sphereskeleton.asy b/Master/texmf/doc/asymptote/examples/sphereskeleton.asy
new file mode 100644
index 00000000000..ca8b8c3d584
--- /dev/null
+++ b/Master/texmf/doc/asymptote/examples/sphereskeleton.asy
@@ -0,0 +1,9 @@
+size(100);
+import solids;
+
+currentprojection=orthographic(5,4,2);
+
+revolution sphere=sphere(1);
+draw(surface(sphere),green+opacity(0.2));
+draw(sphere,m=7,blue);
+