home *** CD-ROM | disk | FTP | other *** search
- Script
- \ Creates 72 spheres at 5° increments, using the Newton function.
- \ By saving the output you can create a rotating sphere demo
- Fractal=Riemann \ Select Riemann to set defaults
- Data Initial \ You could set globe scale to 0.9
- Fractal=Newton \ Can also be Julia or Mandelbrot
- Data Initial
- Select Newton,Plot Iters
- 3d_elevation = -50
- 3d_riemann on \ Turn on riemann plotting
- rot=0; suffix=1
- while rot<360
- 3d_rot=rot
- Draw
- Select Palette,Presets,Landscape \ Gives better display
- rot=rot+5
- suffix=suffix+1
- \ Save_image "arcfs#Spheres:$."+suffix \ Uncomment to save
- endwhile
-