home *** CD-ROM | disk | FTP | other *** search
- Script
- \ This script creates the sprites to run the !Sphere demo. To run the demo
- \ you'll need a 2Mb machine, or 4Mb for mode 15 sprites. You'll also need
- \ ArcFSR/w or Compression to save the sprites onto a floppy.
- \ The sprites must be saved to a file called Spheres in the !Sphere directory.
- \ Creates 72 spheres at 5° increments, using the current image.
- \ The ArcFs file Spheres must be open. The images will be numbered 1 to 72.
- \ First draw a fractal image in landscape palette
- Fractal=Fault
- Select Fault,Type,Cone
- Select Image,Mode,13
- Data Initial; Draw
- Select Effects,Palette,Landscape
- \ Transform to sphere
- Fractal=Riemann
- Data Initial
- 3d_elevation = -40
- rot=0; suffix=1
- while rot<360
- 3d_rot=rot
- Draw
- Save_image "arcfs#Spheres:$."+suffix
- rot=rot+5
- suffix=suffix+1
- endwhile
-