home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1995 November / PCWK1195.iso / inne / dos / fraktale / fracxtr6.exe / OTHER / JBAO.TXT < prev    next >
Internet Message Format  |  1994-12-25  |  4KB

  1. From Arf.bbs@csie.nctu.edu.tw Fri Dec 23 01:27:46 1994
  2.  
  3. This is a fractal animationes generation package.  The fractal
  4. animations here are some what different from other existing
  5. ones: most availiable animations are zoom-in type, the ones
  6. here are parameter twisters.  By adjusting parameters within
  7. each frame, you get a slight different image.  Thus you have
  8. a different type of fractal animation.
  9.  
  10. Technically speaking, I am just moving along some different
  11. axes in the multi-dimetional parameter space.
  12.  
  13. This package contains three sets of fractal animation batch
  14. and configuration files.  You need a seperate .fli encoder
  15. to glue all seperate pieces of images together.
  16.  
  17. Finished animations are all 72 frames long and can be played
  18. back in a loop.  You may modify rendering options like color
  19. map, tesselation, bof,... etc. to your taste.  Or you may
  20. try a different video configuration.  But beware of file
  21. size...
  22.  
  23. To generate those beautiful images, I used some formula files
  24. made by other people.  I don't remember if I have made any
  25. modification or not.  If things come out very strange, it can
  26. be the lack of definition to some parameters.  I always add
  27. parameters p1 and p2 to any formula files I got.  To reduce
  28. the possibility that your formula files and mine are not the
  29. same, I included the three of them at the end of this message.
  30.  
  31. These batch files are generated by a small QBASIC program I
  32. wrote.  I am not going to release it now, because of some bugs
  33. I forgot to kill.  If any of you are interested in generating
  34. fractal movies, you may write your own bug-free version.  I
  35. am not a good programer, all I know is Applesoft :)  My QB
  36. experience is limited and retarded.
  37.  
  38. Thanks to all of them, Mr. Lewen, Mr. Wareman, and the person
  39. who wrote those beautiful tchebych formulas.  Without your
  40. formulas, a layman like me can not realize all these beautiful
  41. images.
  42.  
  43. Jiaqing Bao
  44. g834411@oz.nthu.edu.tw
  45.  
  46. ===========================RCL.FRM
  47. comment {
  48. The fractals in this file are some of my first attempts
  49. at using the formula complier.  (At least those I was willing
  50. to show others <G>).  Comments are welcome as always!
  51. The accompanying parameter file (RCL.PAR) provides a simple
  52. example generated from each formula.
  53.  
  54. Ron Lewen
  55. CIS: 76376,2567
  56.  }
  57.  
  58.  
  59. RCL_Pick13 { ; Ron Lewen
  60.   ;
  61.   ;  Formula from Frontpiece for Appendix C
  62.   ;  and Credits in Pickover's book.
  63.   ;  Set p1=(3,0) to generate the Frontpiece
  64.   ;  for Appendix C and to (2,0) for Credits
  65.   ;
  66.   ;  Use Floating Point
  67.   ;
  68.   z=.001:
  69.     z=z^p1+(1/pixel)^p1,
  70.       |z| <= 100
  71.   }
  72.  
  73. ===========================HALLWEEN.FRM
  74. Readme {
  75. ; This Fractint .FRM file (c) 1993 by:
  76. ;
  77. ; LRCMIKE@LRC.OLDSCOLLEGE.AB.CA
  78. ;
  79. ; Michael G. Wareman
  80. ; P.O. Box 1856
  81. ; Olds, Alberta, Canada
  82. ; T0M 1P0
  83. ;
  84. }
  85.  
  86.  
  87. Hall-c {
  88. z = pixel:
  89. z = (-2.7 + 5 * z * conj(z) + 1.5 * real(z ^ 6)) * z + 1 * conj(z * z) +c +p1,
  90. |z| <= 4
  91. }
  92.  
  93.  
  94. ==========================TCHEBYCH.FRM
  95.  
  96. ;========================================================================
  97. ;Date:    Mon, 10 Feb 1992 13:10:12 EST
  98. ;From: "Bruno"
  99. ;Subject: MORE .par and .frm
  100. ;X-Topic: Entry #3185 of LISTS.FRAC-L
  101. ;To: "LISTS.FRAC-L.3185"
  102. ;
  103. ;Posted on 10 Feb 1992 at 12:24:22 by BrownVM Mailer (103837)
  104. ;
  105. ;MORE .par and .frm
  106. ;
  107. ;Date:         Mon, 10 Feb 1992 08:18:36 GMT
  108. ;Reply-To:     'FRACTAL' discussion list <FRAC-L@GITVM1.BITNET>
  109. ;From:         Rob den Braasem <rdb@KTIBV.UUCP>
  110. ;
  111. ;Here are a group of files with formulas derived from a book of Roger Stevens
  112. ;
  113. ;First the formmats file and then the par file.
  114. ;
  115. ;
  116.  
  117. J_TchebychevS7 {     ;
  118.    c = pixel, z = P1:
  119.    z = c*z*(z*z*(z*z*(z*z-6)+10)-4),
  120.    |z|<100
  121. }
  122.  
  123.  
  124.