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

  1. Martin Map: uses the algorithm of Dr. Martin.
  2. ----------
  3. Change the values of a, b or c to get different patterns. The zoom option
  4. does not give more detail, but allows the size and position of the image to
  5. be changed. The routine is infinite, so you will need to select Stop to end
  6. the plot.
  7.  
  8. Martin plots points, the colours of which are set from the main Plot Options
  9. dialogue box in the Effects menu. Choose Random plotting for best effects.
  10.  
  11. From the menu you can select whether a, b or c are set randomly. Due to the
  12. way the algorithm works it is not possible to guess the size or position of
  13. the resulting image. New variables are not chosen when zooming.
  14.  
  15. For each variable there is an associated maximum for the random number,
  16. which can be changed from the data panel.
  17.  
  18. Algorithm:
  19.    xx=py-sign(px)*sqrt(abs(b*px-c))
  20.    py=a-px
  21.    px=xx
  22.    plotpoint(px,py)
  23. where px,py start off at 0.
  24.