home *** CD-ROM | disk | FTP | other *** search
- Script
- \ Creates 72 spheres at 5° increments, using the current image.
- \ By saving the output you can create a rotating sphere demo
- Fractal=Fault \ Sample fractal
- Data Initial
- Draw
- Select Palette,Presets,Landscape
- \ Transform to sphere
- Fractal=Riemann
- Data Initial
- Data Image Scale=4
- 3d_elevation = -40
- rot=0; suffix=1
- while rot<360
- 3d_rot=rot
- Draw
- rot=rot+5
- suffix=suffix+1
- \ Save_image "arcfs#Spheres:$."+suffix \ Uncomment to save
- endwhile
-