summaryrefslogtreecommitdiff
path: root/Master/texmf/doc/asymptote/examples/animations/sphere.asy
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2012-05-31 23:08:27 +0000
committerKarl Berry <karl@freefriends.org>2012-05-31 23:08:27 +0000
commit43302e4235ec0431ecd3365616212c18892d6187 (patch)
tree265e5d6b8af761d19b3ad3cfc6de4a36696c8857 /Master/texmf/doc/asymptote/examples/animations/sphere.asy
parent359f8fc550d95dcb9c5cae523b0f28a117ca4996 (diff)
asymptote 2.16
git-svn-id: svn://tug.org/texlive/trunk@26747 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf/doc/asymptote/examples/animations/sphere.asy')
-rw-r--r--Master/texmf/doc/asymptote/examples/animations/sphere.asy6
1 files changed, 1 insertions, 5 deletions
diff --git a/Master/texmf/doc/asymptote/examples/animations/sphere.asy b/Master/texmf/doc/asymptote/examples/animations/sphere.asy
index 56c5f73e3b6..125cecc5566 100644
--- a/Master/texmf/doc/asymptote/examples/animations/sphere.asy
+++ b/Master/texmf/doc/asymptote/examples/animations/sphere.asy
@@ -22,11 +22,7 @@ for(int i=0; i < nbpts; ++i) {
transform3 t=rotate(angle,(0,0,0),(1,0.25,0.25));
revolution r=sphere(O,3);
draw(surface(r),lightgrey);
-skeleton s;
-r.transverse(s,reltime(r.g,0.5));
-r.longitudinal(s);
-draw(s.transverse.back,linetype("8 8",8));
-draw(s.transverse.front);
+draw(r,backpen=linetype("8 8",8));
animation A;