diff options
Diffstat (limited to 'Build/source/utils/asymptote/examples/animations/sphere.asy')
-rw-r--r-- | Build/source/utils/asymptote/examples/animations/sphere.asy | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Build/source/utils/asymptote/examples/animations/sphere.asy b/Build/source/utils/asymptote/examples/animations/sphere.asy index 56c5f73e3b6..125cecc5566 100644 --- a/Build/source/utils/asymptote/examples/animations/sphere.asy +++ b/Build/source/utils/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; |