home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 2 / DATAFILE_PDCD2.iso / fractals / _fractrace / FTS-Files / MoveFTS < prev    next >
Encoding:
Text File  |  1990-07-24  |  787 b   |  45 lines

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