home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 16 / CD_ASCQ_16_0994.iso / news / 2555 / povhlp / mandel.hlp < prev    next >
Encoding:
Text File  |  1994-07-05  |  1012 b   |  26 lines

  1.     The mandel pattern computes the standard Mandelbrot fractal pattern
  2.  and projects it onto the X-Y plane.  It uses the X and Y coordinates to com-
  3.  pute the Mandelbrot set.  The pattern is specified with the keyword mandel
  4.  followed by an integer number.  This number is the maximum number of itera-
  5.  tions to be used to compute the set.  Typical values range from 10 up to 256
  6.  but any positive integer may be used.  For example:
  7.           sphere {
  8.              <0, 0, 0>, 1
  9.              pigment {
  10.                 mandel 25
  11.                 color_map {
  12.                    [0.0  color Cyan]
  13.                    [0.3  color Yellow]
  14.                    [0.6  color Magenta]
  15.                    [1.0  color Cyan]
  16.                 }
  17.                 scale .5
  18.              }
  19.           }
  20.  
  21.     The value passed to the color map is computed by the formula:
  22.           value = number_of_iterations / max_iterations
  23.  
  24.     The color extends infinitely in the Z direction similar to a planar
  25.  image map.
  26.