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

  1. 'README1 - by B.Hills
  2. '
  3. Screen Open 0,320,900,8,0
  4. Curs Off : Hide : Flash Off : Cls 0
  5. Palette 2,$4C4,$44C,$C44
  6. Paper 0 : Pen 2
  7. Print ""
  8. Print " Fractals info - README1"
  9. Print ""
  10. Print " press spacebar when ready for more"
  11. Print "" : Pen 3
  12. Print " What are Fractals?"
  13. Print "" : Pen 1
  14. Print " Fractal formulas can produce"
  15. Print " intriguing displays in great variety,"
  16. Print " and this is an attempt at an"
  17. Print " introduction to some of the"
  18. Print " ideas behind them."
  19. Print ""
  20. Print " The Mandelbrot set is plotted"
  21. Print " in a vast two dimensional sheet"
  22. Print " of numbers called the complex plane."
  23. Print " Other sets can be found"
  24. Print " by experimentation."
  25. Print ""
  26. Print " Complex numbers are plotted in the"
  27. Print " plane, and the results"
  28. Print " are displayed on a monitor screen."
  29. Print ""
  30. Print " A 'complex number' is composed of two"
  31. Print " parts, REAL and IMAGINARY. The real"
  32. Print " part is an ordinary everyday number,"
  33. Print " and the imaginary part is an"
  34. Print " ordinary everyday number plus the"
  35. Print " square root of -1."
  36. Print ""
  37. Print ""
  38. Print ""
  39. Print ""
  40. Print " The horizontal axis in the plane"
  41. Print " diagram is scaled in real numbers"
  42. Print " from negative,through zero,to positive."
  43. Print " The vertical axis is the same"
  44. Print " for the imaginary numbers in a"
  45. Print " like fashion. Zero point is fixed at"
  46. Print " the cross point of the two axes. "
  47. Print ""
  48. Print " The computer display is used"
  49. Print " as the plane, and a search is made"
  50. Print " for points or pixels that either"
  51. Print " belong to the set (colour black), or"
  52. Print " not (assign a colour).  The colour"
  53. Print " number assigned to a point not"
  54. Print " belonging to the set indicates the"
  55. Print " distance from the set, and is also"
  56. Print " known as the 'escape time'.  Under "
  57. Print " iteration of a formula points either"
  58. Print " migrate to zero, or to infinity, which"
  59. Print " are called the two 'attractors'."
  60. Print " (It is possible to have more than two"
  61. Print " attractors as in Newtons method "
  62. Print " for solving polynomial equations.)  "
  63. Print ""
  64. Print ""
  65. Print " The resulting graphic displays are"
  66. Print " aesthetically pleasing to the eye,"
  67. Print " and at least provide a visual"
  68. Print " representation of the mathematics"
  69. Print " involved. "
  70. Print ""
  71. Print " Fractal formulas are in use today in"
  72. Print " video data compression, earthquake"
  73. Print " prediction and geological surveying,"
  74. Print " high voltage insulation breakdown "
  75. Print " research,weather research,astronomy,"
  76. Print " film scenery backgrounds and virtual"
  77. Print " environment simulator displays.  The"
  78. Print " film Startrek used fractal-generated"
  79. Print " backgrounds in some parts. "
  80. Print ""
  81. Print " There are many books on Fractals in"
  82. Print " the libraries, and I would refer"
  83. Print " anyone who would like more information"
  84. Print " to these.  "
  85. Print ""
  86. Print " The Beauty of Fractals"
  87. Print "  by Heinz-Otto Peitgen & P.H. Richter"
  88. Print ""
  89. Print " The Science of Fractal Images"
  90. Print "  by Heinz-Otto Peitgen & Dietmar Saupe"
  91. Print ""
  92. Print " Chaos  by James Gleick "
  93. Print ""
  94. Print " Fractal Programming in C"
  95. Print "  by Roger T. Stevens "
  96. Print ""
  97. Print " Fractals Everywhere by Michael Barnsley"
  98. Print ""
  99. Print " The Fractal Geometry of Nature"
  100. Print "  by Benoit B. Mandelbrot   "
  101. Print ""
  102. Print " Fractal Geometry by Kenneth Falconer"
  103. Print "  (foundations & applications) "
  104. Print ""
  105. Print " Read the README2 describing the"
  106. Print " programs on this disk.  "
  107. Print ""
  108. Print " Happy fractalling!  "
  109. Print "" : Pen 2
  110. Print " END OF README1  "
  111. Wait Key 
  112. For Z=0 To 400 Step 200 : For Y=Z To Z+200
  113. Screen Offset 0,0,Y : Wait Vbl 
  114. Next Y : Wait Key : Next Z
  115. Run "df0:MENU.AMOS"