home *** CD-ROM | disk | FTP | other *** search
- Manowar and ManowarJ
- ====================
- These two functions were contribute by Joyce Haslam who kindly ported the
- code from Fractint. ManowarJ is the julia version of Manowar. They are
- variants on the Mandelbrot idea.
-
- The equation for Manowar is:
- c = z1(0) = z(0) = pixel;
- z(n+1) = z(n)^2 + z1(n) + c;
- z1(n+1) = z(n);
- Parameters: real & imaginary perturbations of z(0)
-
- The equation for ManowarJ is:
- z1(0) = z(0) = pixel;
- z(n+1) = z(n)^2 + z1(n) + c;
- z1(n+1) = z(n);
- Parameters: real & imaginary parts of c
-