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