home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / graphics / fractal_1 / !Fractal / Help / Julia_Set < prev    next >
Text File  |  1996-10-09  |  919b  |  25 lines

  1. Julia Set
  2. ---------
  3. Plots the Julia set corresponding to the equivalent Mandelbrot function.
  4. The initial zoom uses integer maths, then reverts to to a rather slower
  5. floating point. From the menu you can switch to the equivalent Mandelbrot -
  6. the current Real and Imaginary values are used to set the Mandelbrot x & y
  7. value for the centre of the image. Other options are as described under
  8. Mandelbrot.
  9.  
  10. It is usually best to select a Julia from the equivalent Mandelbrot display.
  11. Trying to set cReal and cImaginary otherwise can be a slow process to get
  12. reasonable results. When switching to the Quaternion set, Quaternion q0 is
  13. set to cReal & q2 to cImaginary.
  14.  
  15. When using functions other than Square, floating point is used much sooner
  16. so as to maintain accuracy.
  17.  
  18. Algorithm: the Julia algorithm is essentially the same as for Mandelbrot,
  19. but with a different start point, namely:
  20.  
  21.   u=x
  22.   v=y
  23.   x=cReal
  24.   y=cImaginary
  25.