home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 1 / ARM_CLUB_CD.iso / contents / apps / fractal / progs / fractrace / FTS-Files / MoveFTS < prev    next >
Encoding:
Text File  |  1990-08-02  |  857 b   |  46 lines

  1. \ Move
  2. \ FTS file producing different Julia's on a line intersecting M
  3. \ The images of the 'Moving Julia's' demo were created with this file
  4. \ (c)1990 by Carl Declerck
  5.  
  6. title move                                    
  7.                                               
  8. var fromx, fromy, tox, toy, xstep, ystep      
  9. var thisx, thisy, maxframe                              
  10.             
  11. maxframe=12
  12.  
  13. frames maxframe
  14. scope 1,maxframe
  15.  
  16. fromx=-0.12; fromy=0.74; tox=0; toy=1
  17.  
  18. xstep=ABS(fromx-tox)/frames
  19. ystep=ABS(fromy-toy)/frames
  20.  
  21. thisx=fromx+(frame-1)*xstep
  22. thisy=fromy+(frame-1)*ystep                
  23.  
  24. julia
  25. resolution 300,300
  26. range -1.5,1.5,-1.5,1.5
  27. cval thisx,thisy
  28. smoothness 200
  29. depth 127
  30.  
  31. mountains
  32. light -0.5,1,-2
  33. brightness 50
  34. steepness 14
  35. dithering 14
  36. shadows off
  37. interpolation off
  38.  
  39. offset 40,410
  40. angle 0,30
  41. increment 4,4
  42. slope front 0,0
  43.  
  44. color 15,15,15
  45.  
  46.