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

  1. Pickover - A Strange Attractor developed by Clifford Pickover
  2. --------
  3. This is a 3 dimensional shape controlled by 4 variables. To get a feeling of
  4. the shape you really need to try the 3d viewing options of !Fractal - use
  5. the Rotate & Elevate icons to set your viewing position or better still use
  6. the cursor keys whilst plotting. The plot is infinite and is made with
  7. points rather than lines to avoid too much clutter.
  8.  
  9. The menu options are:
  10.  
  11. Random a/b/c/d: Click to set/unset random selection of the variable when a
  12. plot is started. For each variable there is an associated maximum, which can
  13. be changed from the data panel. New variables are not chosen when zooming.
  14. Once you have found an interesting shape, turn off random variables, and use
  15. the 3d options to explore the shape from different view points. The default
  16. variables were obtained in this way.
  17.  
  18. Random colour: when set a random colour is chosen after every 100 plots.
  19.  
  20. Step Colour: the colour value is increased after every 100 plots.
  21.  
  22. If neither Random or Step colour is set, then the plot is made in white
  23. using exclusive or'ing to trace the current position.
  24.  
  25. You can change the viewpoint whilst plotting by pressing the cursor keys,
  26. and then pressing the space bar to restart. See the 3d section in the
  27. !MainHelp file for more details.
  28.  
  29. Algorithm
  30. ---------
  31.     x=1; y=1; z=1;
  32.     do
  33.       xnew = sin(a*y) - z*cos(b*x)
  34.       ynew = z*sin(c*x) - cos(d*y)
  35.       znew = sin(x)
  36.       plot px,pz                    where px/pz are 3d transform of x/y/z
  37.     forever
  38.