home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 4: Demo 1 / almathera_demo1.bin / amos / amosfrac / readme2.amos / readme2.amosSourceCode
AMOS Source Code  |  1995-03-16  |  4KB  |  126 lines

  1. Screen Open 0,320,1023,8,0
  2. Curs Off : Hide : Flash Off : Cls 0
  3. Palette 2,$F80,$8F0
  4. Paper 0
  5. Print "README2 - press spacebar when ready"
  6. Print ""
  7. Pen 2
  8. Print "FRACTALS by B.J.HILLS "
  9. Print "" : Pen 1
  10. Print "This disk is concerned with the"
  11. Print "standard Mandelbrot and Julia sets"
  12. Print "and contains MANZOOM and JULIA -"
  13. Print "respectively Mandelbrot Generator"
  14. Print "and Julia Generator programs."
  15. Print "" : Pen 2
  16. Print "Program 1. MANZOOM -"
  17. Print "           Mandelbrot Set Generator."
  18. Print "" : Pen 1
  19. Print "Capabilities are:-"
  20. Print ""
  21. Print "   LOAD/SAVE IFF FILES."
  22. Print "   DEFAULT - Load Mandelbrot Set figure"
  23. Print "                        (ZOOM on this)"
  24. Print "   ZOOM in on a specific area"
  25. Print "                      - (rubber-box)"
  26. Print "   CLEAR SCREEN"
  27. Print "   INFO - gives coords of zoomed area"
  28. Print "   CYCLE colors"
  29. Print "           - spacebar to stop cycling"
  30. Print "   SCRNSIZE quarter-screen,half-screen,"
  31. Print "                   or full-screen plot"
  32. Print "   (quarter-screen for preview of area)"
  33. Print "   RGB - Palette Box"
  34. Print "   ITS - Set number of iterations"
  35. Print "   GENERATE - start plotting"
  36. Print "   ABORT - press 'A' to stop plotting"
  37. Print "   QUIT- to EDIT - examine program?"
  38. Print ""
  39. Print "Note: use ZOOM before clicking on"
  40. Print "screensize, or you will get a blank"
  41. Print "screen! "
  42. Print "" : Pen 2
  43. Print "Program 2. JULIA - Julia Set Generator."
  44. Print "" : Pen 1
  45. Print "Has ability to limit lower value colors."
  46. Print "(i.e. limit plot to more detailed parts)"
  47. Print ""
  48. Print "No ZOOM in JULIA as zooms do not show"
  49. Print "much of interest. (usually it is the"
  50. Print "whole figure that is most interesting.)"
  51. Print ""
  52. Print "Using the programs....."
  53. Print ""
  54. Print "press 'a' to ABORT to stop plotting if"
  55. Print "it is decided that further plotting"
  56. Print "down the screen will not be interesting."
  57. Print "You do not have to wait for entire"
  58. Print "screen to finish plotting before"
  59. Print "ZOOMing. The program will PING"
  60. Print "when plot completed."
  61. Print ""
  62. Print "Use the x/y values from 'Info' as"
  63. Print "P and Q constants to generate a JULIA"
  64. Print "plot, i.e. zoom into an interesting bit"
  65. Print "in MANZOOM, do 'Info',write down the x/y"
  66. Print "coords for that point, run JULIA, click"
  67. Print "on 'Constants',and key them in, you can"
  68. Print "then generate the Julia plot for that"
  69. Print "point. Full screen can be plotted,then"
  70. Print "half-screen on top,then quarter-screen"
  71. Print "on top of that. "
  72. Print ""
  73. Print "If you wanted to experiment, you could"
  74. Print "change the formulae in the 'generate'"
  75. Print "procedure, in either MANZOOM or JULIA,"
  76. Print "as long as you only change XK# and/or"
  77. Print "YK# in the while/wend loop, the program"
  78. Print " will operate as before,including"
  79. Print "'zooming' into a plot."
  80. Print ""
  81. Print "Run SHOWM and SHOWJ Slideshows for"
  82. Print "pregenerated fractal pics and give"
  83. Print "yourself severe eyeache! "
  84. Print ""
  85. Print "More info...... "
  86. Print ""
  87. Print "The Mandelbrot Set is considered to be"
  88. Print "a sort of map or one page directory of"
  89. Print "Julia Sets. Zoomed bits of Mandelbrot"
  90. Print "set tend to look much like the full"
  91. Print "Julia set for a particular area."
  92. Print "P and Q in the generator progs. are the"
  93. Print "x/y address of a particular point."
  94. Print "In the Mandelbrot set we alter these to"
  95. Print "address every point on screen."
  96. Print "In the Julia set generator, P & Q are"
  97. Print "fixed as constants, and if you wish a"
  98. Print "different Julia plot, P & Q can be "
  99. Print "altered.  The Julia Set plots are quite"
  100. Print "pretty - set them up with colour"
  101. Print "cycling and slide show them at a party!"
  102. Print ""
  103. Print "The drawback with all fractal programs"
  104. Print "is that they take a while to plot and"
  105. Print "unless you can afford a maths"
  106. Print "co-processor, you just have to wait."
  107. Print ""
  108. Print "If anyone would like a colour plot from"
  109. Print "a Star LC-10 printer  of their own"
  110. Print "fractals, send me a disk with your"
  111. Print "Iff's on (plus a small remuneration for"
  112. Print "my trouble,) and I will post them back."
  113. Print ""
  114. Print "BRIAN J.HILLS   7,MAYFIELD CLOSE,"
  115. Print "PATCHAM, BRIGHTON, SUSSEX BN1 8BA "
  116. Print "" : Pen 2
  117. Print "END OF README2"
  118. Wait Key 
  119. For Z=0 To 600 Step 180
  120.    For Y=Z To Z+180
  121.       Screen Offset 0,0,Y
  122.       Wait Vbl 
  123.    Next Y
  124.    Wait Key 
  125. Next Z
  126. Run "df0:MENU.AMOS"