home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 5 / DATAFILE_PDCD5.iso / utilities / f / fractal112 / !Fractal / Help / Manowar < prev    next >
Text File  |  1996-10-09  |  558b  |  18 lines

  1. Manowar and ManowarJ
  2. ====================
  3. These two functions were contribute by Joyce Haslam who kindly ported the
  4. code from Fractint. ManowarJ is the julia version of Manowar. They are
  5. variants on the Mandelbrot idea.
  6.  
  7. The equation for Manowar is:
  8.         c = z1(0) = z(0) = pixel;
  9.         z(n+1) = z(n)^2 + z1(n) + c;
  10.         z1(n+1) = z(n);
  11. Parameters: real & imaginary perturbations of z(0)
  12.  
  13. The equation for ManowarJ is:
  14.         z1(0) = z(0) = pixel;
  15.         z(n+1) = z(n)^2 + z1(n) + c;
  16.         z1(n+1) = z(n);
  17. Parameters: real & imaginary parts of c
  18.