home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #6 / amigamamagazinepolishissue1998.iso / coders / jËzyki_programowania / oberon / demos / crazyfiller.tool (.txt) < prev    next >
Oberon Text  |  1977-12-31  |  2KB  |  38 lines

  1. Syntax14b.Scn.Fnt
  2. ParcElems
  3. Alloc
  4. Syntax12b.Scn.Fnt
  5. Syntax10.Scn.Fnt
  6. Syntax12.Scn.Fnt
  7. Syntax10b.Scn.Fnt
  8. What are crazy fillers?
  9.     Filler viewers are dummy viewers which are visible if no other viewers are on the screen (both in the user track as well as in the system track). Then the remaining dektop (= the filler viewers) are painted with Mandlebrot sets. You can zoom into the figures by selecting a rectangular     area with the left mouse (you can interrupt the selection by interclicking all three mouse buttons). You can restore the initial figure by pressing the setup button.
  10.     The drawings are performed by a background task. Your system should remain as interactive as you are used to it. If your keyboard or mouse input is not as responsive as usual you should lower the number of regions painted in one go.
  11. To decode CrazyFillers execute the decode command below!
  12. To compile the CrazyFiller use:
  13.     Compiler.Compile CrazyFiller.Mod ~
  14. To install the CrazyFiller use:
  15.     CrazyFiller.InstallCrazy
  16. To revert to the default filler use:
  17.     CrazyFiller.InstallDefault
  18. You can set the number of iterations done for each dot:
  19.     CrazyFiller.SetMaxIter (^ | number)
  20.     Standard:
  21.         CrazyFiller.SetMaxIter 100
  22.     To improve the accuracy (especially if zoomed) try:
  23.         CrazyFiller.SetMaxIter ^ 100 200 300 400 500 1000
  24. You can set the number of regions to be painted in one go:
  25.     CrazyFiller.SetRegsPerCycle (^ | number)
  26.     Standard:
  27.         CrazyFiller.SetRegsPerCycle 20
  28.     To improve responsiveness try:
  29.         CrazyFiller.SetRegsPerCycle ^    20 15 10 5 2
  30. You can see the parameters used to compute the Mandelbrot set:
  31.     CrazyFiller.ShowParams
  32. You may freely distribute and change CrazyFillers. If you like or dislike the program you are encouraged to mail me (or write me a postcard):
  33. My e-mail address is: steindl@ssw.uni-linz.ac.at
  34. My address is: Christoph Steindl
  35.     Department of System Software
  36.     Johannes Kepler University Linz
  37.     Austria - 4040 Linz
  38.