home *** CD-ROM | disk | FTP | other *** search
/ Computerworld 1996 March / Computerworld_1996-03_cd.bin / idg_cd3 / grafika / fraktaly / fractxtr / frm / bail_out.frm < prev    next >
Text File  |  1994-12-25  |  1KB  |  54 lines

  1. {BAIL_OUT.FRM        see bail_out.bat and bail_out.par
  2. These formulas explore various heterodox ways of satisfying the
  3. bail_out condition for the classical Mandelbrot set. You won't get the
  4. "mathematically correct" Mandelbrot, but the results are visually in-
  5. teresting!
  6. File Bail_out.par has some beautiful and strange examples of pictures
  7. based on these formulas.
  8. By J. Marques; E-Mail: jmarques@ccvax.unicamp.br
  9. }
  10.  
  11. bail_out01 (xAxis)  {
  12. z = c = pixel:
  13.   z = z^2 + c
  14.    |fn1(z)| <= p1
  15. }
  16. bail_out02 (xAxis)  {
  17. z = c = pixel:
  18.   z = z^2 + c
  19.    |fn1(real(z))| <= p1
  20. }
  21. bail_out03 (xAxis)  {;xAxis won't do for fn=exp. Use bail_out03exp instead
  22. z = c = pixel:
  23.   z = z^2 + c
  24.    |fn1(imag(z))| <= p1
  25. }
  26. bail_out03exp  {
  27. z = c = pixel:
  28.   z = z
  29.    |fn1(imag(z)*i)| <= p1
  30. }
  31. bail_out04 (xAxis)  {
  32. z = c = pixel:
  33.   z = z^2 + c
  34.    real(fn1(z)) <= p1
  35. }
  36. bail_out05   {
  37. z = c = pixel:
  38.   z = z^2 + c
  39. {The next two formulas don't seem to work the way they should.
  40. ; May be there's some bug in the code for the logical "and" and "or"}
  41. bail_out07   {
  42. z = c = pixel:
  43.   z = z^2 + c
  44.    |fn1(imag(z))| <= p1 && |fn1(real(z))| <= p1
  45. }
  46. bail_out08   {
  47. z = c = pixel:
  48.   z = z^2 + c;
  49.    |fn1(real(z))| <= p1  || |fn1(imag(z))| <= p1
  50. }
  51.    z = z^2 + c;
  52.      imag(z) <= abs(z) + p1
  53. }
  54.