home *** CD-ROM | disk | FTP | other *** search
/ Computerworld 1996 March / Computerworld_1996-03_cd.bin / idg_cd3 / grafika / fraktaly / fractxtr / other / jbao.txt / text0000.txt < prev   
Encoding:
Text File  |  1994-12-25  |  3.0 KB  |  108 lines

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