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

  1. Readme {
  2. ; by Chris Behrens, (c)opyright 1994.  xkbr53c@prodigy.com
  3. ; The only caution is that Rabadon sometimes won't work- I have 
  4. ; occasionally gotten a division by zero error. Have fun.
  5. }
  6.  
  7. Flattop {
  8.       c = z = pixel:
  9.             z = sin(z+2) + (c*z)/(z-2);
  10.           |z| <= 4;
  11.       }
  12.  
  13. Rabadon {
  14.      z = pixel/2; q = z^sin(pixel); g = pixel:
  15.           z = z^q/g;
  16.           z = (log(q) + sqr(g)) / z;
  17.           z = 4^z / q^g*2;
  18.           |real(z)| <=8;
  19.     }
  20.