Home » Archimedes archive » Micro User » MU 1991-07.adf » PD-Stuff » Fractals/!Julia/!Help/Readme
Fractals/!Julia/!Help/Readme
This website contains an archive of files for the Acorn Electron, BBC Micro, Acorn Archimedes, Commodore 16 and Commodore 64 computers, which Dominic Ford has rescued from his private collection of floppy disks and cassettes.
Some of these files were originally commercial releases in the 1980s and 1990s, but they are now widely available online. I assume that copyright over them is no longer being asserted. If you own the copyright and would like files to be removed, please contact me.
Tape/disk: | Home » Archimedes archive » Micro User » MU 1991-07.adf » PD-Stuff |
Filename: | Fractals/!Julia/!Help/Readme |
Read OK: | ✔ |
File size: | 28AD bytes |
Load address: | 0000 |
Exec address: | 0000 |
File contents
________________________________________________________________________ / \ | !JULIA v1.10: Quadratic Julia Plotter | | 18 May 1991 | | by Mike Curnow | \________________________________________________________________________/ Introduction ============ !Julia is a fast desktop Julia plotter that provides virtually unlimited exploration of the quadratic Julia set. It provides full zooming, restart and colouring facilities, and multi-tasks where appropriate. It uses fast integer arithmetic to magnifications of around 60,000, then switches to floating point there on. The Julia image is displayed in 256 colours. A brief guide to usage. ---------------------- Double click on the filer icon, then click on the icon-bar icon to display the initial Julia set. Press Menu and then select Zoom. Use the left mouse button to zoom in, and the middle button to zoom out. Press the right button to start the redraw operation. At low magnifications the machine will be locked until the redraw is complete (usually less than 3 minutes). At high magnifications (you will notice the dramatic speed decrease) you can return to the desktop while plotting continues, by pressing Menu twice and selecting Hide. The Display menu option gives access to previous images and various colour modifications, whilst Hide temporarily closes the window. Note however that when in full screen mode that the desktop is still active - its just that the other windows are hidden. The screen can be saved by using the Save option. Saved drawings may be reloaded by simply dragging the saved sprite onto the !Julia icon, allowing zooming to re-commence. Full Operation Information ========================== !Julia requires a considerable amount of storage : 300k for itself, 160k for a Mode 15 screen and 60k for the shared C library, so be prepared. The Julia plot is displayed as a full screen window which may be hidden at any time by selecting Hide from the menu. Automatic Last Display Save --------------------------- All operations which modify the Julia image will save the current display in memory, except for Invert which is self cancelling. The prior image may be recalled by selecting Previous from the menu. Thus you can zoom in to inspect an area, then quickly back out to the previous display. To maintain further images use the load and save facilities. The Menu Options ---------------- The menu options are available from the icon bar or from the full screen window. All options except Zoom and Hide will work from the icon bar, though obviously you will not see colour effects until you open the window. Pressing Adjust instead of Select will keep the menu open. ZOOM: Activates the zoom box and re-plotting process. Moving the mouse moves the box, even beyond the edge of the screen. The mouse buttons have the following effect: Left: Zoom in Middle: Zoom out (max. 2 times magnification) Right: Start zoom On pressing Start the new display will be drawn. For magnifications up to 60,000 times it is not possible to interrupt the re-draw. For higher magnifications, the plotting will commence in dedicated mode (which is the fastest) until you press Menu, at which time desktop mode is re-entered. The plotting will continue in the background and the screen will not be automatically updated. To see the state of the display when in background mode, Hide the screen then click on the icon bar as normal. Dedicated mode will be re-entered and the screen will be drawn in synch with the plotting. If you are in desktop mode when plotting completes, !Julia will automatically display the completed screen by opening a full screen window. Background plotting allows you to carry on using other desktop applications, though you will notice some reduction in speed (Nb. entering commands such as *BASIC will halt all desktop operations!). Background plotting will take much longer, so if you leave the machine it is best to re-enter dedicated mode by clicking on the icon bar to re-open the Julia window. FACTORS: leads to a submenu which displays and allows entry of the variables that are used to create the Julia plot. XY : shows the X and Y values of each corner of the screen. These can only be modified by Zooming. Levels : the number of iterations before stopping each calculation. Higher numbers will take longer but show more detail at higher magnifications. Values >256 will cause colour wrap around. cReal & cImaginary: constants used as part of the Julia calculation. Varying these alters the form of the Julia image. DISPLAY: leads to a submenu allowing alteration of the current displayed image. Hide : closes the full screen window. It may be re-opened by clicking on the iconbar. Invert : Inverts the colours used for the display. This can improve looks. Selecting invert again restores the colours. B&W : converts the display to Black & White. This will show how the image will look if printed. Grey : converts the display to 12 grey levels, which can produce a better printed image than B&W. Use Invert before grey to change the order of grey tones. Cycle : Simulates animation by continuous cycling of the colour by 1, except for black which is left unchanged. To change the direction use Invert prior to animation. The mouse buttons whilst in animation operate as follows: Select: pause the animation Menu : end the animation Adjust: re-start after a pause Animation works best where there are spirals of colours - it can be quite an hypnotic effect! Previous : restores the previous image, ie. to the state before the last image alteration (except Invert). Initial : restores the display to the initial Julia set. SAVE: allows the current Julia image and parameters to be saved as a sprite. The name of the sprite can be over typed before selecting. The default value of <JuliaS$Dir> is the directory in which !Julia resides. You can change this by editing the !Run file within !Julia. A "Save As" icon is not presented since this would be of little use in full screen mode. !Julia sprites are totally compatible with !Paint, !Draw etc. They contain additional information however to allow them to be re-used within !Julia. Thus you can save a position and carry on examination some time later. To reload a Julia sprite simply drag it onto the !Julia icon - a full screen window will be opened to display the image. Note that !Julia sprites are saved in Mode 13 format though they are displayed in Mode 15 for desktop ease of use. !Julia sprites use the AFG1 sprite format for storing parameter information : contact AFG for further details on AFG1. QUIT: Exits !Julia. No warning is given if a redraw is in progress our if you have not saved the current position. Background Operation Notes -------------------------- Background redraw is automatically cancelled if any of the image alteration menu options are selected, or if a new sprite is loaded. The normal way to stop a re-draw is to select Previous. Changing any of the Julia factors during re-draw will have immediate effect. Resuming A Plot --------------- A saved Julia sprite can be used as the new starting point for investigation by simply dragging it's filer icon onto the !Julia icon. Only !Julia sprites are accepted. Julia Algorithm --------------- The routine used to calculate the image is as follows: iter=0 finished=FALSE xSq=x*x ySq=y*y do iter=iter+1 y=x*y y=y+y-cImaginary x=xSq-ySq-cReal xSq=x*x ySq=y*y distanceSq=xSq+ySq if distanceSq>=4 then finished=TRUE while (iterno<MaxIt AND NOT finished) if finished=TRUE then colour=iterno else colour=0 where x and y are calculated for each pixel displayed, and MaxIt is the maximum iterations before plotting. Note the use of inverse colours. These are plotted directly to the screen (ie. the physical colours) and are plotted this way for better effect. This algorithm was taken from the excellent book: Dynamical Systems & Fractals by Becker & D�rfler, CUP. Programming ----------- !Julia is written in C except for the integer plot routines and colour cycle (JuliaAsm) which are in ARM assembler for maximum speed. Contact me if you would like to know how to call JuliaAsm and use it within your own programs. The cycling routine comes from !AFGSprite. History ------- 1.00 April 1991 : Created and released for AFG launch within 2 weeks. 1.10 May 1991 : Added cycling routine for coffee table browsers! To come (a wish list): Load a sprite from the menu. Automatically update the save sprite name on a numerical basis. Compressed sprite files. Direct input of X & Y values. Batch operation - ie. create a text file of co-ordinates, feed it into !Julia, go to sleep, then come back to find loads of nice sprites on your disk (this will definitely require sprite compression). Many more image manipulation facilities. A faster floating point routine (the speed difference is embarassing!). I may consider a background integer routine, but I am the lucky owner of an ARM-3 which does the integer plot in under 30 seconds, 6 seconds flat out! Final Boring Copywright Notice ============================== The copywright of this material belongs to Mike Curnow except for the !Help application which belongs to J R�ling. This software may be passed on to others as long as NO CHARGES ARE LEVIED except to cover costs. Archimedes Fractal Group (AFG) ============================== This software is part of the Archimedes Fractal Group collection. If you have obtained this software outside of the AFG and would like to find out more about Fractals on the Archimedes, contact me (the AFG administrator) at the address below. Send a SAE and a disk to get a free AFG demo disk. Mike Curnow, 30 Bowen Drive, West Dulwich, London SE21 8PN <<<< MAY THE CHAOS BE WITH YOU! >>>>
00000000 20 20 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f | ______________| 00000010 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f |________________| * 00000040 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 0a 20 2f 20 20 20 |__________. / | 00000050 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | * 00000090 20 20 20 20 20 5c 0a 7c 20 20 20 20 20 20 20 20 | \.| | 000000a0 20 20 20 20 20 20 20 20 21 4a 55 4c 49 41 20 76 | !JULIA v| 000000b0 31 2e 31 30 3a 20 51 75 61 64 72 61 74 69 63 20 |1.10: Quadratic | 000000c0 4a 75 6c 69 61 20 50 6c 6f 74 74 65 72 20 20 20 |Julia Plotter | 000000d0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 000000e0 20 20 7c 0a 7c 20 20 20 20 20 20 20 20 20 20 20 | |.| | 000000f0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 00000100 20 20 20 31 38 20 4d 61 79 20 31 39 39 31 20 20 | 18 May 1991 | 00000110 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 00000120 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 7c | || 00000130 0a 7c 20 20 20 20 20 20 20 20 20 20 20 20 20 20 |.| | 00000140 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 00000150 62 79 20 4d 69 6b 65 20 43 75 72 6e 6f 77 20 20 |by Mike Curnow | 00000160 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 00000170 20 20 20 20 20 20 20 20 20 20 20 20 7c 0a 20 5c | |. \| 00000180 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f |________________| * 000001c0 5f 5f 5f 5f 5f 5f 5f 5f 2f 20 0a 0a 49 6e 74 72 |________/ ..Intr| 000001d0 6f 64 75 63 74 69 6f 6e 0a 3d 3d 3d 3d 3d 3d 3d |oduction.=======| 000001e0 3d 3d 3d 3d 3d 0a 21 4a 75 6c 69 61 20 69 73 20 |=====.!Julia is | 000001f0 61 20 66 61 73 74 20 64 65 73 6b 74 6f 70 20 4a |a fast desktop J| 00000200 75 6c 69 61 20 70 6c 6f 74 74 65 72 20 74 68 61 |ulia plotter tha| 00000210 74 20 70 72 6f 76 69 64 65 73 20 76 69 72 74 75 |t provides virtu| 00000220 61 6c 6c 79 20 75 6e 6c 69 6d 69 74 65 64 0a 65 |ally unlimited.e| 00000230 78 70 6c 6f 72 61 74 69 6f 6e 20 6f 66 20 74 68 |xploration of th| 00000240 65 20 71 75 61 64 72 61 74 69 63 20 4a 75 6c 69 |e quadratic Juli| 00000250 61 20 73 65 74 2e 20 49 74 20 70 72 6f 76 69 64 |a set. It provid| 00000260 65 73 20 66 75 6c 6c 20 7a 6f 6f 6d 69 6e 67 2c |es full zooming,| 00000270 20 72 65 73 74 61 72 74 0a 61 6e 64 20 63 6f 6c | restart.and col| 00000280 6f 75 72 69 6e 67 20 66 61 63 69 6c 69 74 69 65 |ouring facilitie| 00000290 73 2c 20 61 6e 64 20 6d 75 6c 74 69 2d 74 61 73 |s, and multi-tas| 000002a0 6b 73 20 77 68 65 72 65 20 61 70 70 72 6f 70 72 |ks where appropr| 000002b0 69 61 74 65 2e 20 49 74 20 75 73 65 73 20 66 61 |iate. It uses fa| 000002c0 73 74 0a 69 6e 74 65 67 65 72 20 61 72 69 74 68 |st.integer arith| 000002d0 6d 65 74 69 63 20 74 6f 20 6d 61 67 6e 69 66 69 |metic to magnifi| 000002e0 63 61 74 69 6f 6e 73 20 6f 66 20 61 72 6f 75 6e |cations of aroun| 000002f0 64 20 36 30 2c 30 30 30 2c 20 74 68 65 6e 20 73 |d 60,000, then s| 00000300 77 69 74 63 68 65 73 20 74 6f 0a 66 6c 6f 61 74 |witches to.float| 00000310 69 6e 67 20 70 6f 69 6e 74 20 74 68 65 72 65 20 |ing point there | 00000320 6f 6e 2e 20 54 68 65 20 4a 75 6c 69 61 20 69 6d |on. The Julia im| 00000330 61 67 65 20 69 73 20 64 69 73 70 6c 61 79 65 64 |age is displayed| 00000340 20 69 6e 20 32 35 36 20 63 6f 6c 6f 75 72 73 2e | in 256 colours.| 00000350 0a 0a 41 20 62 72 69 65 66 20 67 75 69 64 65 20 |..A brief guide | 00000360 74 6f 20 75 73 61 67 65 2e 0a 2d 2d 2d 2d 2d 2d |to usage..------| 00000370 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d |----------------| 00000380 0a 44 6f 75 62 6c 65 20 63 6c 69 63 6b 20 6f 6e |.Double click on| 00000390 20 74 68 65 20 66 69 6c 65 72 20 69 63 6f 6e 2c | the filer icon,| 000003a0 20 74 68 65 6e 20 63 6c 69 63 6b 20 6f 6e 20 74 | then click on t| 000003b0 68 65 20 69 63 6f 6e 2d 62 61 72 20 69 63 6f 6e |he icon-bar icon| 000003c0 20 74 6f 20 64 69 73 70 6c 61 79 0a 74 68 65 20 | to display.the | 000003d0 69 6e 69 74 69 61 6c 20 4a 75 6c 69 61 20 73 65 |initial Julia se| 000003e0 74 2e 20 50 72 65 73 73 20 4d 65 6e 75 20 61 6e |t. Press Menu an| 000003f0 64 20 74 68 65 6e 20 73 65 6c 65 63 74 20 5a 6f |d then select Zo| 00000400 6f 6d 2e 20 55 73 65 20 74 68 65 20 6c 65 66 74 |om. Use the left| 00000410 20 6d 6f 75 73 65 0a 62 75 74 74 6f 6e 20 74 6f | mouse.button to| 00000420 20 7a 6f 6f 6d 20 69 6e 2c 20 61 6e 64 20 74 68 | zoom in, and th| 00000430 65 20 6d 69 64 64 6c 65 20 62 75 74 74 6f 6e 20 |e middle button | 00000440 74 6f 20 7a 6f 6f 6d 20 6f 75 74 2e 20 50 72 65 |to zoom out. Pre| 00000450 73 73 20 74 68 65 20 72 69 67 68 74 20 62 75 74 |ss the right but| 00000460 74 6f 6e 0a 74 6f 20 73 74 61 72 74 20 74 68 65 |ton.to start the| 00000470 20 72 65 64 72 61 77 20 6f 70 65 72 61 74 69 6f | redraw operatio| 00000480 6e 2e 20 41 74 20 6c 6f 77 20 6d 61 67 6e 69 66 |n. At low magnif| 00000490 69 63 61 74 69 6f 6e 73 20 74 68 65 20 6d 61 63 |ications the mac| 000004a0 68 69 6e 65 20 77 69 6c 6c 20 62 65 0a 6c 6f 63 |hine will be.loc| 000004b0 6b 65 64 20 75 6e 74 69 6c 20 74 68 65 20 72 65 |ked until the re| 000004c0 64 72 61 77 20 69 73 20 63 6f 6d 70 6c 65 74 65 |draw is complete| 000004d0 20 28 75 73 75 61 6c 6c 79 20 6c 65 73 73 20 74 | (usually less t| 000004e0 68 61 6e 20 33 20 6d 69 6e 75 74 65 73 29 2e 0a |han 3 minutes)..| 000004f0 0a 41 74 20 68 69 67 68 20 6d 61 67 6e 69 66 69 |.At high magnifi| 00000500 63 61 74 69 6f 6e 73 20 28 79 6f 75 20 77 69 6c |cations (you wil| 00000510 6c 20 6e 6f 74 69 63 65 20 74 68 65 20 64 72 61 |l notice the dra| 00000520 6d 61 74 69 63 20 73 70 65 65 64 20 64 65 63 72 |matic speed decr| 00000530 65 61 73 65 29 20 79 6f 75 20 63 61 6e 0a 72 65 |ease) you can.re| 00000540 74 75 72 6e 20 74 6f 20 74 68 65 20 64 65 73 6b |turn to the desk| 00000550 74 6f 70 20 77 68 69 6c 65 20 70 6c 6f 74 74 69 |top while plotti| 00000560 6e 67 20 63 6f 6e 74 69 6e 75 65 73 2c 20 62 79 |ng continues, by| 00000570 20 70 72 65 73 73 69 6e 67 20 4d 65 6e 75 20 74 | pressing Menu t| 00000580 77 69 63 65 20 61 6e 64 0a 73 65 6c 65 63 74 69 |wice and.selecti| 00000590 6e 67 20 48 69 64 65 2e 0a 0a 54 68 65 20 44 69 |ng Hide...The Di| 000005a0 73 70 6c 61 79 20 6d 65 6e 75 20 6f 70 74 69 6f |splay menu optio| 000005b0 6e 20 67 69 76 65 73 20 61 63 63 65 73 73 20 74 |n gives access t| 000005c0 6f 20 70 72 65 76 69 6f 75 73 20 69 6d 61 67 65 |o previous image| 000005d0 73 20 61 6e 64 20 76 61 72 69 6f 75 73 20 63 6f |s and various co| 000005e0 6c 6f 75 72 0a 6d 6f 64 69 66 69 63 61 74 69 6f |lour.modificatio| 000005f0 6e 73 2c 20 77 68 69 6c 73 74 20 48 69 64 65 20 |ns, whilst Hide | 00000600 74 65 6d 70 6f 72 61 72 69 6c 79 20 63 6c 6f 73 |temporarily clos| 00000610 65 73 20 74 68 65 20 77 69 6e 64 6f 77 2e 20 4e |es the window. N| 00000620 6f 74 65 20 68 6f 77 65 76 65 72 20 74 68 61 74 |ote however that| 00000630 0a 77 68 65 6e 20 69 6e 20 66 75 6c 6c 20 73 63 |.when in full sc| 00000640 72 65 65 6e 20 6d 6f 64 65 20 74 68 61 74 20 74 |reen mode that t| 00000650 68 65 20 64 65 73 6b 74 6f 70 20 69 73 20 73 74 |he desktop is st| 00000660 69 6c 6c 20 61 63 74 69 76 65 20 2d 20 69 74 73 |ill active - its| 00000670 20 6a 75 73 74 20 74 68 61 74 0a 74 68 65 20 6f | just that.the o| 00000680 74 68 65 72 20 77 69 6e 64 6f 77 73 20 61 72 65 |ther windows are| 00000690 20 68 69 64 64 65 6e 2e 0a 0a 54 68 65 20 73 63 | hidden...The sc| 000006a0 72 65 65 6e 20 63 61 6e 20 62 65 20 73 61 76 65 |reen can be save| 000006b0 64 20 62 79 20 75 73 69 6e 67 20 74 68 65 20 53 |d by using the S| 000006c0 61 76 65 20 6f 70 74 69 6f 6e 2e 20 53 61 76 65 |ave option. Save| 000006d0 64 20 64 72 61 77 69 6e 67 73 20 6d 61 79 20 62 |d drawings may b| 000006e0 65 0a 72 65 6c 6f 61 64 65 64 20 62 79 20 73 69 |e.reloaded by si| 000006f0 6d 70 6c 79 20 64 72 61 67 67 69 6e 67 20 74 68 |mply dragging th| 00000700 65 20 73 61 76 65 64 20 73 70 72 69 74 65 20 6f |e saved sprite o| 00000710 6e 74 6f 20 74 68 65 20 21 4a 75 6c 69 61 20 69 |nto the !Julia i| 00000720 63 6f 6e 2c 20 61 6c 6c 6f 77 69 6e 67 0a 7a 6f |con, allowing.zo| 00000730 6f 6d 69 6e 67 20 74 6f 20 72 65 2d 63 6f 6d 6d |oming to re-comm| 00000740 65 6e 63 65 2e 0a 0a 46 75 6c 6c 20 4f 70 65 72 |ence...Full Oper| 00000750 61 74 69 6f 6e 20 49 6e 66 6f 72 6d 61 74 69 6f |ation Informatio| 00000760 6e 0a 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d |n.==============| 00000770 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 0a 21 4a 75 |============.!Ju| 00000780 6c 69 61 20 72 65 71 75 69 72 65 73 20 61 20 63 |lia requires a c| 00000790 6f 6e 73 69 64 65 72 61 62 6c 65 20 61 6d 6f 75 |onsiderable amou| 000007a0 6e 74 20 6f 66 20 73 74 6f 72 61 67 65 20 3a 20 |nt of storage : | 000007b0 33 30 30 6b 20 66 6f 72 20 69 74 73 65 6c 66 2c |300k for itself,| 000007c0 20 31 36 30 6b 20 66 6f 72 0a 61 20 4d 6f 64 65 | 160k for.a Mode| 000007d0 20 31 35 20 73 63 72 65 65 6e 20 61 6e 64 20 36 | 15 screen and 6| 000007e0 30 6b 20 66 6f 72 20 74 68 65 20 73 68 61 72 65 |0k for the share| 000007f0 64 20 43 20 6c 69 62 72 61 72 79 2c 20 73 6f 20 |d C library, so | 00000800 62 65 20 70 72 65 70 61 72 65 64 2e 20 54 68 65 |be prepared. The| 00000810 20 4a 75 6c 69 61 0a 70 6c 6f 74 20 69 73 20 64 | Julia.plot is d| 00000820 69 73 70 6c 61 79 65 64 20 61 73 20 61 20 66 75 |isplayed as a fu| 00000830 6c 6c 20 73 63 72 65 65 6e 20 77 69 6e 64 6f 77 |ll screen window| 00000840 20 77 68 69 63 68 20 6d 61 79 20 62 65 20 68 69 | which may be hi| 00000850 64 64 65 6e 20 61 74 20 61 6e 79 20 74 69 6d 65 |dden at any time| 00000860 20 62 79 0a 73 65 6c 65 63 74 69 6e 67 20 48 69 | by.selecting Hi| 00000870 64 65 20 66 72 6f 6d 20 74 68 65 20 6d 65 6e 75 |de from the menu| 00000880 2e 0a 0a 41 75 74 6f 6d 61 74 69 63 20 4c 61 73 |...Automatic Las| 00000890 74 20 44 69 73 70 6c 61 79 20 53 61 76 65 0a 2d |t Display Save.-| 000008a0 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d |----------------| 000008b0 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 0a 41 6c 6c 20 6f |----------.All o| 000008c0 70 65 72 61 74 69 6f 6e 73 20 77 68 69 63 68 20 |perations which | 000008d0 6d 6f 64 69 66 79 20 74 68 65 20 4a 75 6c 69 61 |modify the Julia| 000008e0 20 69 6d 61 67 65 20 77 69 6c 6c 20 73 61 76 65 | image will save| 000008f0 20 74 68 65 20 63 75 72 72 65 6e 74 20 64 69 73 | the current dis| 00000900 70 6c 61 79 20 69 6e 0a 6d 65 6d 6f 72 79 2c 20 |play in.memory, | 00000910 65 78 63 65 70 74 20 66 6f 72 20 49 6e 76 65 72 |except for Inver| 00000920 74 20 77 68 69 63 68 20 69 73 20 73 65 6c 66 20 |t which is self | 00000930 63 61 6e 63 65 6c 6c 69 6e 67 2e 20 54 68 65 20 |cancelling. The | 00000940 70 72 69 6f 72 20 69 6d 61 67 65 20 6d 61 79 20 |prior image may | 00000950 62 65 0a 72 65 63 61 6c 6c 65 64 20 62 79 20 73 |be.recalled by s| 00000960 65 6c 65 63 74 69 6e 67 20 50 72 65 76 69 6f 75 |electing Previou| 00000970 73 20 66 72 6f 6d 20 74 68 65 20 6d 65 6e 75 2e |s from the menu.| 00000980 20 54 68 75 73 20 79 6f 75 20 63 61 6e 20 7a 6f | Thus you can zo| 00000990 6f 6d 20 69 6e 20 74 6f 0a 69 6e 73 70 65 63 74 |om in to.inspect| 000009a0 20 61 6e 20 61 72 65 61 2c 20 74 68 65 6e 20 71 | an area, then q| 000009b0 75 69 63 6b 6c 79 20 62 61 63 6b 20 6f 75 74 20 |uickly back out | 000009c0 74 6f 20 74 68 65 20 70 72 65 76 69 6f 75 73 20 |to the previous | 000009d0 64 69 73 70 6c 61 79 2e 20 54 6f 20 6d 61 69 6e |display. To main| 000009e0 74 61 69 6e 0a 66 75 72 74 68 65 72 20 69 6d 61 |tain.further ima| 000009f0 67 65 73 20 75 73 65 20 74 68 65 20 6c 6f 61 64 |ges use the load| 00000a00 20 61 6e 64 20 73 61 76 65 20 66 61 63 69 6c 69 | and save facili| 00000a10 74 69 65 73 2e 0a 0a 54 68 65 20 4d 65 6e 75 20 |ties...The Menu | 00000a20 4f 70 74 69 6f 6e 73 0a 2d 2d 2d 2d 2d 2d 2d 2d |Options.--------| 00000a30 2d 2d 2d 2d 2d 2d 2d 2d 0a 54 68 65 20 6d 65 6e |--------.The men| 00000a40 75 20 6f 70 74 69 6f 6e 73 20 61 72 65 20 61 76 |u options are av| 00000a50 61 69 6c 61 62 6c 65 20 66 72 6f 6d 20 74 68 65 |ailable from the| 00000a60 20 69 63 6f 6e 20 62 61 72 20 6f 72 20 66 72 6f | icon bar or fro| 00000a70 6d 20 74 68 65 20 66 75 6c 6c 20 73 63 72 65 65 |m the full scree| 00000a80 6e 0a 77 69 6e 64 6f 77 2e 20 41 6c 6c 20 6f 70 |n.window. All op| 00000a90 74 69 6f 6e 73 20 65 78 63 65 70 74 20 5a 6f 6f |tions except Zoo| 00000aa0 6d 20 61 6e 64 20 48 69 64 65 20 77 69 6c 6c 20 |m and Hide will | 00000ab0 77 6f 72 6b 20 66 72 6f 6d 20 74 68 65 20 69 63 |work from the ic| 00000ac0 6f 6e 20 62 61 72 2c 20 74 68 6f 75 67 68 0a 6f |on bar, though.o| 00000ad0 62 76 69 6f 75 73 6c 79 20 79 6f 75 20 77 69 6c |bviously you wil| 00000ae0 6c 20 6e 6f 74 20 73 65 65 20 63 6f 6c 6f 75 72 |l not see colour| 00000af0 20 65 66 66 65 63 74 73 20 75 6e 74 69 6c 20 79 | effects until y| 00000b00 6f 75 20 6f 70 65 6e 20 74 68 65 20 77 69 6e 64 |ou open the wind| 00000b10 6f 77 2e 0a 50 72 65 73 73 69 6e 67 20 41 64 6a |ow..Pressing Adj| 00000b20 75 73 74 20 69 6e 73 74 65 61 64 20 6f 66 20 53 |ust instead of S| 00000b30 65 6c 65 63 74 20 77 69 6c 6c 20 6b 65 65 70 20 |elect will keep | 00000b40 74 68 65 20 6d 65 6e 75 20 6f 70 65 6e 2e 0a 0a |the menu open...| 00000b50 5a 4f 4f 4d 3a 20 41 63 74 69 76 61 74 65 73 20 |ZOOM: Activates | 00000b60 74 68 65 20 7a 6f 6f 6d 20 62 6f 78 20 61 6e 64 |the zoom box and| 00000b70 20 72 65 2d 70 6c 6f 74 74 69 6e 67 20 70 72 6f | re-plotting pro| 00000b80 63 65 73 73 2e 20 4d 6f 76 69 6e 67 20 74 68 65 |cess. Moving the| 00000b90 20 6d 6f 75 73 65 20 6d 6f 76 65 73 0a 74 68 65 | mouse moves.the| 00000ba0 20 62 6f 78 2c 20 65 76 65 6e 20 62 65 79 6f 6e | box, even beyon| 00000bb0 64 20 74 68 65 20 65 64 67 65 20 6f 66 20 74 68 |d the edge of th| 00000bc0 65 20 73 63 72 65 65 6e 2e 20 54 68 65 20 6d 6f |e screen. The mo| 00000bd0 75 73 65 20 62 75 74 74 6f 6e 73 20 68 61 76 65 |use buttons have| 00000be0 20 74 68 65 0a 66 6f 6c 6c 6f 77 69 6e 67 20 65 | the.following e| 00000bf0 66 66 65 63 74 3a 0a 0a 20 20 20 20 4c 65 66 74 |ffect:.. Left| 00000c00 3a 20 5a 6f 6f 6d 20 69 6e 0a 20 20 4d 69 64 64 |: Zoom in. Midd| 00000c10 6c 65 3a 20 5a 6f 6f 6d 20 6f 75 74 20 28 6d 61 |le: Zoom out (ma| 00000c20 78 2e 20 32 20 74 69 6d 65 73 20 6d 61 67 6e 69 |x. 2 times magni| 00000c30 66 69 63 61 74 69 6f 6e 29 0a 20 20 20 52 69 67 |fication). Rig| 00000c40 68 74 3a 20 53 74 61 72 74 20 7a 6f 6f 6d 0a 0a |ht: Start zoom..| 00000c50 4f 6e 20 70 72 65 73 73 69 6e 67 20 53 74 61 72 |On pressing Star| 00000c60 74 20 74 68 65 20 6e 65 77 20 64 69 73 70 6c 61 |t the new displa| 00000c70 79 20 77 69 6c 6c 20 62 65 20 64 72 61 77 6e 2e |y will be drawn.| 00000c80 20 46 6f 72 20 6d 61 67 6e 69 66 69 63 61 74 69 | For magnificati| 00000c90 6f 6e 73 20 75 70 20 74 6f 0a 36 30 2c 30 30 30 |ons up to.60,000| 00000ca0 20 74 69 6d 65 73 20 69 74 20 69 73 20 6e 6f 74 | times it is not| 00000cb0 20 70 6f 73 73 69 62 6c 65 20 74 6f 20 69 6e 74 | possible to int| 00000cc0 65 72 72 75 70 74 20 74 68 65 20 72 65 2d 64 72 |errupt the re-dr| 00000cd0 61 77 2e 20 46 6f 72 20 68 69 67 68 65 72 0a 6d |aw. For higher.m| 00000ce0 61 67 6e 69 66 69 63 61 74 69 6f 6e 73 2c 20 74 |agnifications, t| 00000cf0 68 65 20 70 6c 6f 74 74 69 6e 67 20 77 69 6c 6c |he plotting will| 00000d00 20 63 6f 6d 6d 65 6e 63 65 20 69 6e 20 64 65 64 | commence in ded| 00000d10 69 63 61 74 65 64 20 6d 6f 64 65 20 28 77 68 69 |icated mode (whi| 00000d20 63 68 20 69 73 20 74 68 65 0a 66 61 73 74 65 73 |ch is the.fastes| 00000d30 74 29 20 75 6e 74 69 6c 20 79 6f 75 20 70 72 65 |t) until you pre| 00000d40 73 73 20 4d 65 6e 75 2c 20 61 74 20 77 68 69 63 |ss Menu, at whic| 00000d50 68 20 74 69 6d 65 20 64 65 73 6b 74 6f 70 20 6d |h time desktop m| 00000d60 6f 64 65 20 69 73 20 72 65 2d 65 6e 74 65 72 65 |ode is re-entere| 00000d70 64 2e 20 54 68 65 0a 70 6c 6f 74 74 69 6e 67 20 |d. The.plotting | 00000d80 77 69 6c 6c 20 63 6f 6e 74 69 6e 75 65 20 69 6e |will continue in| 00000d90 20 74 68 65 20 62 61 63 6b 67 72 6f 75 6e 64 20 | the background | 00000da0 61 6e 64 20 74 68 65 20 73 63 72 65 65 6e 20 77 |and the screen w| 00000db0 69 6c 6c 20 6e 6f 74 20 62 65 0a 61 75 74 6f 6d |ill not be.autom| 00000dc0 61 74 69 63 61 6c 6c 79 20 75 70 64 61 74 65 64 |atically updated| 00000dd0 2e 0a 0a 54 6f 20 73 65 65 20 74 68 65 20 73 74 |...To see the st| 00000de0 61 74 65 20 6f 66 20 74 68 65 20 64 69 73 70 6c |ate of the displ| 00000df0 61 79 20 77 68 65 6e 20 69 6e 20 62 61 63 6b 67 |ay when in backg| 00000e00 72 6f 75 6e 64 20 6d 6f 64 65 2c 20 48 69 64 65 |round mode, Hide| 00000e10 20 74 68 65 20 73 63 72 65 65 6e 0a 74 68 65 6e | the screen.then| 00000e20 20 63 6c 69 63 6b 20 6f 6e 20 74 68 65 20 69 63 | click on the ic| 00000e30 6f 6e 20 62 61 72 20 61 73 20 6e 6f 72 6d 61 6c |on bar as normal| 00000e40 2e 20 44 65 64 69 63 61 74 65 64 20 6d 6f 64 65 |. Dedicated mode| 00000e50 20 77 69 6c 6c 20 62 65 20 72 65 2d 65 6e 74 65 | will be re-ente| 00000e60 72 65 64 20 61 6e 64 0a 74 68 65 20 73 63 72 65 |red and.the scre| 00000e70 65 6e 20 77 69 6c 6c 20 62 65 20 64 72 61 77 6e |en will be drawn| 00000e80 20 69 6e 20 73 79 6e 63 68 20 77 69 74 68 20 74 | in synch with t| 00000e90 68 65 20 70 6c 6f 74 74 69 6e 67 2e 20 49 66 20 |he plotting. If | 00000ea0 79 6f 75 20 61 72 65 20 69 6e 20 64 65 73 6b 74 |you are in deskt| 00000eb0 6f 70 0a 6d 6f 64 65 20 77 68 65 6e 20 70 6c 6f |op.mode when plo| 00000ec0 74 74 69 6e 67 20 63 6f 6d 70 6c 65 74 65 73 2c |tting completes,| 00000ed0 20 21 4a 75 6c 69 61 20 77 69 6c 6c 20 61 75 74 | !Julia will aut| 00000ee0 6f 6d 61 74 69 63 61 6c 6c 79 20 64 69 73 70 6c |omatically displ| 00000ef0 61 79 20 74 68 65 0a 63 6f 6d 70 6c 65 74 65 64 |ay the.completed| 00000f00 20 73 63 72 65 65 6e 20 62 79 20 6f 70 65 6e 69 | screen by openi| 00000f10 6e 67 20 61 20 66 75 6c 6c 20 73 63 72 65 65 6e |ng a full screen| 00000f20 20 77 69 6e 64 6f 77 2e 0a 0a 42 61 63 6b 67 72 | window...Backgr| 00000f30 6f 75 6e 64 20 70 6c 6f 74 74 69 6e 67 20 61 6c |ound plotting al| 00000f40 6c 6f 77 73 20 79 6f 75 20 74 6f 20 63 61 72 72 |lows you to carr| 00000f50 79 20 6f 6e 20 75 73 69 6e 67 20 6f 74 68 65 72 |y on using other| 00000f60 20 64 65 73 6b 74 6f 70 20 61 70 70 6c 69 63 61 | desktop applica| 00000f70 74 69 6f 6e 73 2c 0a 74 68 6f 75 67 68 20 79 6f |tions,.though yo| 00000f80 75 20 77 69 6c 6c 20 6e 6f 74 69 63 65 20 73 6f |u will notice so| 00000f90 6d 65 20 72 65 64 75 63 74 69 6f 6e 20 69 6e 20 |me reduction in | 00000fa0 73 70 65 65 64 20 28 4e 62 2e 20 65 6e 74 65 72 |speed (Nb. enter| 00000fb0 69 6e 67 20 63 6f 6d 6d 61 6e 64 73 20 73 75 63 |ing commands suc| 00000fc0 68 0a 61 73 20 2a 42 41 53 49 43 20 77 69 6c 6c |h.as *BASIC will| 00000fd0 20 68 61 6c 74 20 61 6c 6c 20 64 65 73 6b 74 6f | halt all deskto| 00000fe0 70 20 6f 70 65 72 61 74 69 6f 6e 73 21 29 2e 20 |p operations!). | 00000ff0 42 61 63 6b 67 72 6f 75 6e 64 20 70 6c 6f 74 74 |Background plott| 00001000 69 6e 67 20 77 69 6c 6c 20 74 61 6b 65 0a 6d 75 |ing will take.mu| 00001010 63 68 20 6c 6f 6e 67 65 72 2c 20 73 6f 20 69 66 |ch longer, so if| 00001020 20 79 6f 75 20 6c 65 61 76 65 20 74 68 65 20 6d | you leave the m| 00001030 61 63 68 69 6e 65 20 69 74 20 69 73 20 62 65 73 |achine it is bes| 00001040 74 20 74 6f 20 72 65 2d 65 6e 74 65 72 20 64 65 |t to re-enter de| 00001050 64 69 63 61 74 65 64 0a 6d 6f 64 65 20 62 79 20 |dicated.mode by | 00001060 63 6c 69 63 6b 69 6e 67 20 6f 6e 20 74 68 65 20 |clicking on the | 00001070 69 63 6f 6e 20 62 61 72 20 74 6f 20 72 65 2d 6f |icon bar to re-o| 00001080 70 65 6e 20 74 68 65 20 4a 75 6c 69 61 20 77 69 |pen the Julia wi| 00001090 6e 64 6f 77 2e 0a 0a 0a 46 41 43 54 4f 52 53 3a |ndow....FACTORS:| 000010a0 20 6c 65 61 64 73 20 74 6f 20 61 20 73 75 62 6d | leads to a subm| 000010b0 65 6e 75 20 77 68 69 63 68 20 64 69 73 70 6c 61 |enu which displa| 000010c0 79 73 20 61 6e 64 20 61 6c 6c 6f 77 73 20 65 6e |ys and allows en| 000010d0 74 72 79 20 6f 66 20 74 68 65 20 76 61 72 69 61 |try of the varia| 000010e0 62 6c 65 73 0a 74 68 61 74 20 61 72 65 20 75 73 |bles.that are us| 000010f0 65 64 20 74 6f 20 63 72 65 61 74 65 20 74 68 65 |ed to create the| 00001100 20 4a 75 6c 69 61 20 70 6c 6f 74 2e 0a 20 20 58 | Julia plot.. X| 00001110 59 20 20 20 20 20 20 20 20 3a 20 73 68 6f 77 73 |Y : shows| 00001120 20 74 68 65 20 58 20 61 6e 64 20 59 20 76 61 6c | the X and Y val| 00001130 75 65 73 20 6f 66 20 65 61 63 68 20 63 6f 72 6e |ues of each corn| 00001140 65 72 20 6f 66 20 74 68 65 20 73 63 72 65 65 6e |er of the screen| 00001150 2e 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 |.. | 00001160 54 68 65 73 65 20 63 61 6e 20 6f 6e 6c 79 20 62 |These can only b| 00001170 65 20 6d 6f 64 69 66 69 65 64 20 62 79 20 5a 6f |e modified by Zo| 00001180 6f 6d 69 6e 67 2e 0a 20 20 4c 65 76 65 6c 73 20 |oming.. Levels | 00001190 20 20 20 3a 20 74 68 65 20 6e 75 6d 62 65 72 20 | : the number | 000011a0 6f 66 20 69 74 65 72 61 74 69 6f 6e 73 20 62 65 |of iterations be| 000011b0 66 6f 72 65 20 73 74 6f 70 70 69 6e 67 20 65 61 |fore stopping ea| 000011c0 63 68 20 63 61 6c 63 75 6c 61 74 69 6f 6e 2e 0a |ch calculation..| 000011d0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 48 69 | Hi| 000011e0 67 68 65 72 20 6e 75 6d 62 65 72 73 20 77 69 6c |gher numbers wil| 000011f0 6c 20 74 61 6b 65 20 6c 6f 6e 67 65 72 20 62 75 |l take longer bu| 00001200 74 20 73 68 6f 77 20 6d 6f 72 65 20 64 65 74 61 |t show more deta| 00001210 69 6c 20 61 74 20 68 69 67 68 65 72 0a 20 20 20 |il at higher. | 00001220 20 20 20 20 20 20 20 20 20 20 20 6d 61 67 6e 69 | magni| 00001230 66 69 63 61 74 69 6f 6e 73 2e 20 56 61 6c 75 65 |fications. Value| 00001240 73 20 3e 32 35 36 20 77 69 6c 6c 20 63 61 75 73 |s >256 will caus| 00001250 65 20 63 6f 6c 6f 75 72 20 77 72 61 70 20 61 72 |e colour wrap ar| 00001260 6f 75 6e 64 2e 0a 20 20 63 52 65 61 6c 20 26 0a |ound.. cReal &.| 00001270 20 20 63 49 6d 61 67 69 6e 61 72 79 3a 20 63 6f | cImaginary: co| 00001280 6e 73 74 61 6e 74 73 20 75 73 65 64 20 61 73 20 |nstants used as | 00001290 70 61 72 74 20 6f 66 20 74 68 65 20 4a 75 6c 69 |part of the Juli| 000012a0 61 20 63 61 6c 63 75 6c 61 74 69 6f 6e 2e 0a 20 |a calculation.. | 000012b0 20 20 20 20 20 20 20 20 20 20 20 20 20 56 61 72 | Var| 000012c0 79 69 6e 67 20 74 68 65 73 65 20 61 6c 74 65 72 |ying these alter| 000012d0 73 20 74 68 65 20 66 6f 72 6d 20 6f 66 20 74 68 |s the form of th| 000012e0 65 20 4a 75 6c 69 61 20 69 6d 61 67 65 2e 0a 0a |e Julia image...| 000012f0 0a 44 49 53 50 4c 41 59 3a 20 6c 65 61 64 73 20 |.DISPLAY: leads | 00001300 74 6f 20 61 20 73 75 62 6d 65 6e 75 20 61 6c 6c |to a submenu all| 00001310 6f 77 69 6e 67 20 61 6c 74 65 72 61 74 69 6f 6e |owing alteration| 00001320 20 6f 66 20 74 68 65 20 63 75 72 72 65 6e 74 20 | of the current | 00001330 64 69 73 70 6c 61 79 65 64 0a 69 6d 61 67 65 2e |displayed.image.| 00001340 0a 20 20 48 69 64 65 20 20 20 20 20 20 3a 20 63 |. Hide : c| 00001350 6c 6f 73 65 73 20 74 68 65 20 66 75 6c 6c 20 73 |loses the full s| 00001360 63 72 65 65 6e 20 77 69 6e 64 6f 77 2e 20 49 74 |creen window. It| 00001370 20 6d 61 79 20 62 65 20 72 65 2d 6f 70 65 6e 65 | may be re-opene| 00001380 64 20 62 79 0a 20 20 20 20 20 20 20 20 20 20 20 |d by. | 00001390 20 20 20 63 6c 69 63 6b 69 6e 67 20 6f 6e 20 74 | clicking on t| 000013a0 68 65 20 69 63 6f 6e 62 61 72 2e 0a 20 20 49 6e |he iconbar.. In| 000013b0 76 65 72 74 20 20 20 20 3a 20 49 6e 76 65 72 74 |vert : Invert| 000013c0 73 20 74 68 65 20 63 6f 6c 6f 75 72 73 20 75 73 |s the colours us| 000013d0 65 64 20 66 6f 72 20 74 68 65 20 64 69 73 70 6c |ed for the displ| 000013e0 61 79 2e 20 54 68 69 73 20 63 61 6e 20 69 6d 70 |ay. This can imp| 000013f0 72 6f 76 65 0a 20 20 20 20 20 20 20 20 20 20 20 |rove. | 00001400 20 20 20 6c 6f 6f 6b 73 2e 20 53 65 6c 65 63 74 | looks. Select| 00001410 69 6e 67 20 69 6e 76 65 72 74 20 61 67 61 69 6e |ing invert again| 00001420 20 72 65 73 74 6f 72 65 73 20 74 68 65 20 63 6f | restores the co| 00001430 6c 6f 75 72 73 2e 0a 20 20 42 26 57 20 20 20 20 |lours.. B&W | 00001440 20 20 20 3a 20 63 6f 6e 76 65 72 74 73 20 74 68 | : converts th| 00001450 65 20 64 69 73 70 6c 61 79 20 74 6f 20 42 6c 61 |e display to Bla| 00001460 63 6b 20 26 20 57 68 69 74 65 2e 20 54 68 69 73 |ck & White. This| 00001470 20 77 69 6c 6c 20 73 68 6f 77 20 68 6f 77 20 74 | will show how t| 00001480 68 65 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 |he. | 00001490 20 69 6d 61 67 65 20 77 69 6c 6c 20 6c 6f 6f 6b | image will look| 000014a0 20 69 66 20 70 72 69 6e 74 65 64 2e 0a 20 20 47 | if printed.. G| 000014b0 72 65 79 20 20 20 20 20 20 3a 20 63 6f 6e 76 65 |rey : conve| 000014c0 72 74 73 20 74 68 65 20 64 69 73 70 6c 61 79 20 |rts the display | 000014d0 74 6f 20 31 32 20 67 72 65 79 20 6c 65 76 65 6c |to 12 grey level| 000014e0 73 2c 20 77 68 69 63 68 20 63 61 6e 20 70 72 6f |s, which can pro| 000014f0 64 75 63 65 20 61 0a 20 20 20 20 20 20 20 20 20 |duce a. | 00001500 20 20 20 20 20 62 65 74 74 65 72 20 70 72 69 6e | better prin| 00001510 74 65 64 20 69 6d 61 67 65 20 74 68 61 6e 20 42 |ted image than B| 00001520 26 57 2e 20 55 73 65 20 49 6e 76 65 72 74 20 62 |&W. Use Invert b| 00001530 65 66 6f 72 65 20 67 72 65 79 20 74 6f 0a 20 20 |efore grey to. | 00001540 20 20 20 20 20 20 20 20 20 20 20 20 63 68 61 6e | chan| 00001550 67 65 20 74 68 65 20 6f 72 64 65 72 20 6f 66 20 |ge the order of | 00001560 67 72 65 79 20 74 6f 6e 65 73 2e 0a 20 20 43 79 |grey tones.. Cy| 00001570 63 6c 65 20 20 20 20 20 3a 20 53 69 6d 75 6c 61 |cle : Simula| 00001580 74 65 73 20 61 6e 69 6d 61 74 69 6f 6e 20 62 79 |tes animation by| 00001590 20 63 6f 6e 74 69 6e 75 6f 75 73 20 63 79 63 6c | continuous cycl| 000015a0 69 6e 67 20 6f 66 20 74 68 65 20 63 6f 6c 6f 75 |ing of the colou| 000015b0 72 20 62 79 20 31 2c 20 0a 20 20 20 20 20 20 20 |r by 1, . | 000015c0 20 20 20 20 20 20 20 65 78 63 65 70 74 20 66 6f | except fo| 000015d0 72 20 62 6c 61 63 6b 20 77 68 69 63 68 20 69 73 |r black which is| 000015e0 20 6c 65 66 74 20 75 6e 63 68 61 6e 67 65 64 2e | left unchanged.| 000015f0 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 54 |. T| 00001600 6f 20 63 68 61 6e 67 65 20 74 68 65 20 64 69 72 |o change the dir| 00001610 65 63 74 69 6f 6e 20 75 73 65 20 49 6e 76 65 72 |ection use Inver| 00001620 74 20 70 72 69 6f 72 20 74 6f 20 61 6e 69 6d 61 |t prior to anima| 00001630 74 69 6f 6e 2e 0a 20 20 20 20 20 20 20 20 20 20 |tion.. | 00001640 20 20 20 20 54 68 65 20 6d 6f 75 73 65 20 62 75 | The mouse bu| 00001650 74 74 6f 6e 73 20 77 68 69 6c 73 74 20 69 6e 20 |ttons whilst in | 00001660 61 6e 69 6d 61 74 69 6f 6e 20 6f 70 65 72 61 74 |animation operat| 00001670 65 20 61 73 20 66 6f 6c 6c 6f 77 73 3a 0a 20 20 |e as follows:. | 00001680 20 20 20 20 20 20 20 20 20 20 20 20 20 20 53 65 | Se| 00001690 6c 65 63 74 3a 20 70 61 75 73 65 20 74 68 65 20 |lect: pause the | 000016a0 61 6e 69 6d 61 74 69 6f 6e 0a 20 20 20 20 20 20 |animation. | 000016b0 20 20 20 20 20 20 20 20 20 20 4d 65 6e 75 20 20 | Menu | 000016c0 3a 20 65 6e 64 20 74 68 65 20 61 6e 69 6d 61 74 |: end the animat| 000016d0 69 6f 6e 0a 20 20 20 20 20 20 20 20 20 20 20 20 |ion. | 000016e0 20 20 20 20 41 64 6a 75 73 74 3a 20 72 65 2d 73 | Adjust: re-s| 000016f0 74 61 72 74 20 61 66 74 65 72 20 61 20 70 61 75 |tart after a pau| 00001700 73 65 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 |se. | 00001710 20 41 6e 69 6d 61 74 69 6f 6e 20 77 6f 72 6b 73 | Animation works| 00001720 20 62 65 73 74 20 77 68 65 72 65 20 74 68 65 72 | best where ther| 00001730 65 20 61 72 65 20 73 70 69 72 61 6c 73 20 6f 66 |e are spirals of| 00001740 20 63 6f 6c 6f 75 72 73 20 2d 0a 20 20 20 20 20 | colours -. | 00001750 20 20 20 20 20 20 20 20 20 69 74 20 63 61 6e 20 | it can | 00001760 62 65 20 71 75 69 74 65 20 61 6e 20 68 79 70 6e |be quite an hypn| 00001770 6f 74 69 63 20 65 66 66 65 63 74 21 0a 20 20 50 |otic effect!. P| 00001780 72 65 76 69 6f 75 73 20 20 3a 20 72 65 73 74 6f |revious : resto| 00001790 72 65 73 20 74 68 65 20 70 72 65 76 69 6f 75 73 |res the previous| 000017a0 20 69 6d 61 67 65 2c 20 69 65 2e 20 74 6f 20 74 | image, ie. to t| 000017b0 68 65 20 73 74 61 74 65 20 62 65 66 6f 72 65 20 |he state before | 000017c0 74 68 65 20 6c 61 73 74 0a 20 20 20 20 20 20 20 |the last. | 000017d0 20 20 20 20 20 20 20 69 6d 61 67 65 20 61 6c 74 | image alt| 000017e0 65 72 61 74 69 6f 6e 20 28 65 78 63 65 70 74 20 |eration (except | 000017f0 49 6e 76 65 72 74 29 2e 0a 20 20 49 6e 69 74 69 |Invert).. Initi| 00001800 61 6c 20 20 20 3a 20 72 65 73 74 6f 72 65 73 20 |al : restores | 00001810 74 68 65 20 64 69 73 70 6c 61 79 20 74 6f 20 74 |the display to t| 00001820 68 65 20 69 6e 69 74 69 61 6c 20 4a 75 6c 69 61 |he initial Julia| 00001830 20 73 65 74 2e 0a 0a 0a 53 41 56 45 3a 20 61 6c | set....SAVE: al| 00001840 6c 6f 77 73 20 74 68 65 20 63 75 72 72 65 6e 74 |lows the current| 00001850 20 4a 75 6c 69 61 20 69 6d 61 67 65 20 61 6e 64 | Julia image and| 00001860 20 70 61 72 61 6d 65 74 65 72 73 20 74 6f 20 62 | parameters to b| 00001870 65 20 73 61 76 65 64 20 61 73 20 61 20 73 70 72 |e saved as a spr| 00001880 69 74 65 2e 0a 54 68 65 20 6e 61 6d 65 20 6f 66 |ite..The name of| 00001890 20 74 68 65 20 73 70 72 69 74 65 20 63 61 6e 20 | the sprite can | 000018a0 62 65 20 6f 76 65 72 20 74 79 70 65 64 20 62 65 |be over typed be| 000018b0 66 6f 72 65 20 73 65 6c 65 63 74 69 6e 67 2e 20 |fore selecting. | 000018c0 54 68 65 20 64 65 66 61 75 6c 74 20 76 61 6c 75 |The default valu| 000018d0 65 0a 6f 66 20 3c 4a 75 6c 69 61 53 24 44 69 72 |e.of <JuliaS$Dir| 000018e0 3e 20 69 73 20 74 68 65 20 64 69 72 65 63 74 6f |> is the directo| 000018f0 72 79 20 69 6e 20 77 68 69 63 68 20 21 4a 75 6c |ry in which !Jul| 00001900 69 61 20 72 65 73 69 64 65 73 2e 20 59 6f 75 20 |ia resides. You | 00001910 63 61 6e 20 63 68 61 6e 67 65 0a 74 68 69 73 20 |can change.this | 00001920 62 79 20 65 64 69 74 69 6e 67 20 74 68 65 20 21 |by editing the !| 00001930 52 75 6e 20 66 69 6c 65 20 77 69 74 68 69 6e 20 |Run file within | 00001940 21 4a 75 6c 69 61 2e 20 41 20 22 53 61 76 65 20 |!Julia. A "Save | 00001950 41 73 22 20 69 63 6f 6e 20 69 73 20 6e 6f 74 0a |As" icon is not.| 00001960 70 72 65 73 65 6e 74 65 64 20 73 69 6e 63 65 20 |presented since | 00001970 74 68 69 73 20 77 6f 75 6c 64 20 62 65 20 6f 66 |this would be of| 00001980 20 6c 69 74 74 6c 65 20 75 73 65 20 69 6e 20 66 | little use in f| 00001990 75 6c 6c 20 73 63 72 65 65 6e 20 6d 6f 64 65 2e |ull screen mode.| 000019a0 0a 0a 21 4a 75 6c 69 61 20 73 70 72 69 74 65 73 |..!Julia sprites| 000019b0 20 61 72 65 20 74 6f 74 61 6c 6c 79 20 63 6f 6d | are totally com| 000019c0 70 61 74 69 62 6c 65 20 77 69 74 68 20 21 50 61 |patible with !Pa| 000019d0 69 6e 74 2c 20 21 44 72 61 77 20 65 74 63 2e 20 |int, !Draw etc. | 000019e0 54 68 65 79 20 63 6f 6e 74 61 69 6e 0a 61 64 64 |They contain.add| 000019f0 69 74 69 6f 6e 61 6c 20 69 6e 66 6f 72 6d 61 74 |itional informat| 00001a00 69 6f 6e 20 68 6f 77 65 76 65 72 20 74 6f 20 61 |ion however to a| 00001a10 6c 6c 6f 77 20 74 68 65 6d 20 74 6f 20 62 65 20 |llow them to be | 00001a20 72 65 2d 75 73 65 64 20 77 69 74 68 69 6e 20 21 |re-used within !| 00001a30 4a 75 6c 69 61 2e 0a 54 68 75 73 20 79 6f 75 20 |Julia..Thus you | 00001a40 63 61 6e 20 73 61 76 65 20 61 20 70 6f 73 69 74 |can save a posit| 00001a50 69 6f 6e 20 61 6e 64 20 63 61 72 72 79 20 6f 6e |ion and carry on| 00001a60 20 65 78 61 6d 69 6e 61 74 69 6f 6e 20 73 6f 6d | examination som| 00001a70 65 20 74 69 6d 65 20 6c 61 74 65 72 2e 20 54 6f |e time later. To| 00001a80 0a 72 65 6c 6f 61 64 20 61 20 4a 75 6c 69 61 20 |.reload a Julia | 00001a90 73 70 72 69 74 65 20 73 69 6d 70 6c 79 20 64 72 |sprite simply dr| 00001aa0 61 67 20 69 74 20 6f 6e 74 6f 20 74 68 65 20 21 |ag it onto the !| 00001ab0 4a 75 6c 69 61 20 69 63 6f 6e 20 2d 20 61 20 66 |Julia icon - a f| 00001ac0 75 6c 6c 20 73 63 72 65 65 6e 0a 77 69 6e 64 6f |ull screen.windo| 00001ad0 77 20 77 69 6c 6c 20 62 65 20 6f 70 65 6e 65 64 |w will be opened| 00001ae0 20 74 6f 20 64 69 73 70 6c 61 79 20 74 68 65 20 | to display the | 00001af0 69 6d 61 67 65 2e 0a 0a 4e 6f 74 65 20 74 68 61 |image...Note tha| 00001b00 74 20 21 4a 75 6c 69 61 20 73 70 72 69 74 65 73 |t !Julia sprites| 00001b10 20 61 72 65 20 73 61 76 65 64 20 69 6e 20 4d 6f | are saved in Mo| 00001b20 64 65 20 31 33 20 66 6f 72 6d 61 74 20 74 68 6f |de 13 format tho| 00001b30 75 67 68 20 74 68 65 79 20 61 72 65 0a 64 69 73 |ugh they are.dis| 00001b40 70 6c 61 79 65 64 20 69 6e 20 4d 6f 64 65 20 31 |played in Mode 1| 00001b50 35 20 66 6f 72 20 64 65 73 6b 74 6f 70 20 65 61 |5 for desktop ea| 00001b60 73 65 20 6f 66 20 75 73 65 2e 20 21 4a 75 6c 69 |se of use. !Juli| 00001b70 61 20 73 70 72 69 74 65 73 20 75 73 65 20 74 68 |a sprites use th| 00001b80 65 20 41 46 47 31 0a 73 70 72 69 74 65 20 66 6f |e AFG1.sprite fo| 00001b90 72 6d 61 74 20 66 6f 72 20 73 74 6f 72 69 6e 67 |rmat for storing| 00001ba0 20 70 61 72 61 6d 65 74 65 72 20 69 6e 66 6f 72 | parameter infor| 00001bb0 6d 61 74 69 6f 6e 20 3a 20 63 6f 6e 74 61 63 74 |mation : contact| 00001bc0 20 41 46 47 20 66 6f 72 20 66 75 72 74 68 65 72 | AFG for further| 00001bd0 0a 64 65 74 61 69 6c 73 20 6f 6e 20 41 46 47 31 |.details on AFG1| 00001be0 2e 0a 0a 51 55 49 54 3a 20 45 78 69 74 73 20 21 |...QUIT: Exits !| 00001bf0 4a 75 6c 69 61 2e 20 4e 6f 20 77 61 72 6e 69 6e |Julia. No warnin| 00001c00 67 20 69 73 20 67 69 76 65 6e 20 69 66 20 61 20 |g is given if a | 00001c10 72 65 64 72 61 77 20 69 73 20 69 6e 20 70 72 6f |redraw is in pro| 00001c20 67 72 65 73 73 20 6f 75 72 20 69 66 0a 79 6f 75 |gress our if.you| 00001c30 20 68 61 76 65 20 6e 6f 74 20 73 61 76 65 64 20 | have not saved | 00001c40 74 68 65 20 63 75 72 72 65 6e 74 20 70 6f 73 69 |the current posi| 00001c50 74 69 6f 6e 2e 0a 0a 0a 42 61 63 6b 67 72 6f 75 |tion....Backgrou| 00001c60 6e 64 20 4f 70 65 72 61 74 69 6f 6e 20 4e 6f 74 |nd Operation Not| 00001c70 65 73 0a 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d |es.-------------| 00001c80 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 0a 42 61 |-------------.Ba| 00001c90 63 6b 67 72 6f 75 6e 64 20 72 65 64 72 61 77 20 |ckground redraw | 00001ca0 69 73 20 61 75 74 6f 6d 61 74 69 63 61 6c 6c 79 |is automatically| 00001cb0 20 63 61 6e 63 65 6c 6c 65 64 20 69 66 20 61 6e | cancelled if an| 00001cc0 79 20 6f 66 20 74 68 65 20 69 6d 61 67 65 20 61 |y of the image a| 00001cd0 6c 74 65 72 61 74 69 6f 6e 0a 6d 65 6e 75 20 6f |lteration.menu o| 00001ce0 70 74 69 6f 6e 73 20 61 72 65 20 73 65 6c 65 63 |ptions are selec| 00001cf0 74 65 64 2c 20 6f 72 20 69 66 20 61 20 6e 65 77 |ted, or if a new| 00001d00 20 73 70 72 69 74 65 20 69 73 20 6c 6f 61 64 65 | sprite is loade| 00001d10 64 2e 20 54 68 65 20 6e 6f 72 6d 61 6c 20 77 61 |d. The normal wa| 00001d20 79 20 74 6f 0a 73 74 6f 70 20 61 20 72 65 2d 64 |y to.stop a re-d| 00001d30 72 61 77 20 69 73 20 74 6f 20 73 65 6c 65 63 74 |raw is to select| 00001d40 20 50 72 65 76 69 6f 75 73 2e 0a 0a 43 68 61 6e | Previous...Chan| 00001d50 67 69 6e 67 20 61 6e 79 20 6f 66 20 74 68 65 20 |ging any of the | 00001d60 4a 75 6c 69 61 20 66 61 63 74 6f 72 73 20 64 75 |Julia factors du| 00001d70 72 69 6e 67 20 72 65 2d 64 72 61 77 20 77 69 6c |ring re-draw wil| 00001d80 6c 20 68 61 76 65 20 69 6d 6d 65 64 69 61 74 65 |l have immediate| 00001d90 20 65 66 66 65 63 74 2e 0a 0a 52 65 73 75 6d 69 | effect...Resumi| 00001da0 6e 67 20 41 20 50 6c 6f 74 0a 2d 2d 2d 2d 2d 2d |ng A Plot.------| 00001db0 2d 2d 2d 2d 2d 2d 2d 2d 2d 0a 41 20 73 61 76 65 |---------.A save| 00001dc0 64 20 4a 75 6c 69 61 20 73 70 72 69 74 65 20 63 |d Julia sprite c| 00001dd0 61 6e 20 62 65 20 75 73 65 64 20 61 73 20 74 68 |an be used as th| 00001de0 65 20 6e 65 77 20 73 74 61 72 74 69 6e 67 20 70 |e new starting p| 00001df0 6f 69 6e 74 20 66 6f 72 20 69 6e 76 65 73 74 69 |oint for investi| 00001e00 67 61 74 69 6f 6e 0a 62 79 20 73 69 6d 70 6c 79 |gation.by simply| 00001e10 20 64 72 61 67 67 69 6e 67 20 69 74 27 73 20 66 | dragging it's f| 00001e20 69 6c 65 72 20 69 63 6f 6e 20 6f 6e 74 6f 20 74 |iler icon onto t| 00001e30 68 65 20 21 4a 75 6c 69 61 20 69 63 6f 6e 2e 20 |he !Julia icon. | 00001e40 4f 6e 6c 79 20 21 4a 75 6c 69 61 20 73 70 72 69 |Only !Julia spri| 00001e50 74 65 73 0a 61 72 65 20 61 63 63 65 70 74 65 64 |tes.are accepted| 00001e60 2e 0a 0a 4a 75 6c 69 61 20 41 6c 67 6f 72 69 74 |...Julia Algorit| 00001e70 68 6d 0a 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d |hm.-------------| 00001e80 2d 2d 0a 54 68 65 20 72 6f 75 74 69 6e 65 20 75 |--.The routine u| 00001e90 73 65 64 20 74 6f 20 63 61 6c 63 75 6c 61 74 65 |sed to calculate| 00001ea0 20 74 68 65 20 69 6d 61 67 65 20 69 73 20 61 73 | the image is as| 00001eb0 20 66 6f 6c 6c 6f 77 73 3a 0a 0a 20 20 20 69 74 | follows:.. it| 00001ec0 65 72 3d 30 0a 20 20 20 66 69 6e 69 73 68 65 64 |er=0. finished| 00001ed0 3d 46 41 4c 53 45 0a 20 20 20 78 53 71 3d 78 2a |=FALSE. xSq=x*| 00001ee0 78 0a 20 20 20 79 53 71 3d 79 2a 79 0a 20 20 20 |x. ySq=y*y. | 00001ef0 64 6f 20 0a 20 20 20 20 20 69 74 65 72 3d 69 74 |do . iter=it| 00001f00 65 72 2b 31 0a 20 20 20 20 20 79 3d 78 2a 79 0a |er+1. y=x*y.| 00001f10 20 20 20 20 20 79 3d 79 2b 79 2d 63 49 6d 61 67 | y=y+y-cImag| 00001f20 69 6e 61 72 79 0a 20 20 20 20 20 78 3d 78 53 71 |inary. x=xSq| 00001f30 2d 79 53 71 2d 63 52 65 61 6c 0a 20 20 20 20 20 |-ySq-cReal. | 00001f40 78 53 71 3d 78 2a 78 0a 20 20 20 20 20 79 53 71 |xSq=x*x. ySq| 00001f50 3d 79 2a 79 0a 20 20 20 20 20 64 69 73 74 61 6e |=y*y. distan| 00001f60 63 65 53 71 3d 78 53 71 2b 79 53 71 0a 20 20 20 |ceSq=xSq+ySq. | 00001f70 20 20 69 66 20 64 69 73 74 61 6e 63 65 53 71 3e | if distanceSq>| 00001f80 3d 34 20 74 68 65 6e 20 66 69 6e 69 73 68 65 64 |=4 then finished| 00001f90 3d 54 52 55 45 0a 20 20 20 77 68 69 6c 65 20 28 |=TRUE. while (| 00001fa0 69 74 65 72 6e 6f 3c 4d 61 78 49 74 20 41 4e 44 |iterno<MaxIt AND| 00001fb0 20 4e 4f 54 20 66 69 6e 69 73 68 65 64 29 0a 20 | NOT finished). | 00001fc0 20 20 69 66 20 66 69 6e 69 73 68 65 64 3d 54 52 | if finished=TR| 00001fd0 55 45 20 74 68 65 6e 20 63 6f 6c 6f 75 72 3d 69 |UE then colour=i| 00001fe0 74 65 72 6e 6f 0a 20 20 20 65 6c 73 65 20 63 6f |terno. else co| 00001ff0 6c 6f 75 72 3d 30 0a 0a 77 68 65 72 65 20 78 20 |lour=0..where x | 00002000 61 6e 64 20 79 20 61 72 65 20 63 61 6c 63 75 6c |and y are calcul| 00002010 61 74 65 64 20 66 6f 72 20 65 61 63 68 20 70 69 |ated for each pi| 00002020 78 65 6c 20 64 69 73 70 6c 61 79 65 64 2c 20 61 |xel displayed, a| 00002030 6e 64 20 4d 61 78 49 74 20 69 73 20 74 68 65 0a |nd MaxIt is the.| 00002040 6d 61 78 69 6d 75 6d 20 69 74 65 72 61 74 69 6f |maximum iteratio| 00002050 6e 73 20 62 65 66 6f 72 65 20 70 6c 6f 74 74 69 |ns before plotti| 00002060 6e 67 2e 20 4e 6f 74 65 20 74 68 65 20 75 73 65 |ng. Note the use| 00002070 20 6f 66 20 69 6e 76 65 72 73 65 20 63 6f 6c 6f | of inverse colo| 00002080 75 72 73 2e 20 54 68 65 73 65 0a 61 72 65 20 70 |urs. These.are p| 00002090 6c 6f 74 74 65 64 20 64 69 72 65 63 74 6c 79 20 |lotted directly | 000020a0 74 6f 20 74 68 65 20 73 63 72 65 65 6e 20 28 69 |to the screen (i| 000020b0 65 2e 20 74 68 65 20 70 68 79 73 69 63 61 6c 20 |e. the physical | 000020c0 63 6f 6c 6f 75 72 73 29 20 61 6e 64 20 61 72 65 |colours) and are| 000020d0 0a 70 6c 6f 74 74 65 64 20 74 68 69 73 20 77 61 |.plotted this wa| 000020e0 79 20 66 6f 72 20 62 65 74 74 65 72 20 65 66 66 |y for better eff| 000020f0 65 63 74 2e 20 54 68 69 73 20 61 6c 67 6f 72 69 |ect. This algori| 00002100 74 68 6d 20 77 61 73 20 74 61 6b 65 6e 20 66 72 |thm was taken fr| 00002110 6f 6d 20 74 68 65 0a 65 78 63 65 6c 6c 65 6e 74 |om the.excellent| 00002120 20 62 6f 6f 6b 3a 20 44 79 6e 61 6d 69 63 61 6c | book: Dynamical| 00002130 20 53 79 73 74 65 6d 73 20 26 20 46 72 61 63 74 | Systems & Fract| 00002140 61 6c 73 20 62 79 20 42 65 63 6b 65 72 20 26 20 |als by Becker & | 00002150 44 d6 72 66 6c 65 72 2c 20 43 55 50 2e 0a 0a 0a |D.rfler, CUP....| 00002160 50 72 6f 67 72 61 6d 6d 69 6e 67 0a 2d 2d 2d 2d |Programming.----| 00002170 2d 2d 2d 2d 2d 2d 2d 0a 21 4a 75 6c 69 61 20 69 |-------.!Julia i| 00002180 73 20 77 72 69 74 74 65 6e 20 69 6e 20 43 20 65 |s written in C e| 00002190 78 63 65 70 74 20 66 6f 72 20 74 68 65 20 69 6e |xcept for the in| 000021a0 74 65 67 65 72 20 70 6c 6f 74 20 72 6f 75 74 69 |teger plot routi| 000021b0 6e 65 73 20 61 6e 64 20 63 6f 6c 6f 75 72 20 63 |nes and colour c| 000021c0 79 63 6c 65 0a 28 4a 75 6c 69 61 41 73 6d 29 20 |ycle.(JuliaAsm) | 000021d0 77 68 69 63 68 20 61 72 65 20 69 6e 20 41 52 4d |which are in ARM| 000021e0 20 61 73 73 65 6d 62 6c 65 72 20 66 6f 72 20 6d | assembler for m| 000021f0 61 78 69 6d 75 6d 20 73 70 65 65 64 2e 20 43 6f |aximum speed. Co| 00002200 6e 74 61 63 74 20 6d 65 20 69 66 20 79 6f 75 0a |ntact me if you.| 00002210 77 6f 75 6c 64 20 6c 69 6b 65 20 74 6f 20 6b 6e |would like to kn| 00002220 6f 77 20 68 6f 77 20 74 6f 20 63 61 6c 6c 20 4a |ow how to call J| 00002230 75 6c 69 61 41 73 6d 20 61 6e 64 20 75 73 65 20 |uliaAsm and use | 00002240 69 74 20 77 69 74 68 69 6e 20 79 6f 75 72 20 6f |it within your o| 00002250 77 6e 20 70 72 6f 67 72 61 6d 73 2e 0a 54 68 65 |wn programs..The| 00002260 20 63 79 63 6c 69 6e 67 20 72 6f 75 74 69 6e 65 | cycling routine| 00002270 20 63 6f 6d 65 73 20 66 72 6f 6d 20 21 41 46 47 | comes from !AFG| 00002280 53 70 72 69 74 65 2e 0a 0a 48 69 73 74 6f 72 79 |Sprite...History| 00002290 0a 2d 2d 2d 2d 2d 2d 2d 0a 31 2e 30 30 20 41 70 |.-------.1.00 Ap| 000022a0 72 69 6c 20 31 39 39 31 20 3a 20 43 72 65 61 74 |ril 1991 : Creat| 000022b0 65 64 20 61 6e 64 20 72 65 6c 65 61 73 65 64 20 |ed and released | 000022c0 66 6f 72 20 41 46 47 20 6c 61 75 6e 63 68 20 77 |for AFG launch w| 000022d0 69 74 68 69 6e 20 32 20 77 65 65 6b 73 2e 0a 31 |ithin 2 weeks..1| 000022e0 2e 31 30 20 4d 61 79 20 20 20 31 39 39 31 20 3a |.10 May 1991 :| 000022f0 20 41 64 64 65 64 20 63 79 63 6c 69 6e 67 20 72 | Added cycling r| 00002300 6f 75 74 69 6e 65 20 66 6f 72 20 63 6f 66 66 65 |outine for coffe| 00002310 65 20 74 61 62 6c 65 20 62 72 6f 77 73 65 72 73 |e table browsers| 00002320 21 0a 0a 54 6f 20 63 6f 6d 65 20 28 61 20 77 69 |!..To come (a wi| 00002330 73 68 20 6c 69 73 74 29 3a 0a 4c 6f 61 64 20 61 |sh list):.Load a| 00002340 20 73 70 72 69 74 65 20 66 72 6f 6d 20 74 68 65 | sprite from the| 00002350 20 6d 65 6e 75 2e 0a 0a 41 75 74 6f 6d 61 74 69 | menu...Automati| 00002360 63 61 6c 6c 79 20 75 70 64 61 74 65 20 74 68 65 |cally update the| 00002370 20 73 61 76 65 20 73 70 72 69 74 65 20 6e 61 6d | save sprite nam| 00002380 65 20 6f 6e 20 61 20 6e 75 6d 65 72 69 63 61 6c |e on a numerical| 00002390 20 62 61 73 69 73 2e 0a 0a 43 6f 6d 70 72 65 73 | basis...Compres| 000023a0 73 65 64 20 73 70 72 69 74 65 20 66 69 6c 65 73 |sed sprite files| 000023b0 2e 0a 0a 44 69 72 65 63 74 20 69 6e 70 75 74 20 |...Direct input | 000023c0 6f 66 20 58 20 26 20 59 20 76 61 6c 75 65 73 2e |of X & Y values.| 000023d0 0a 0a 42 61 74 63 68 20 6f 70 65 72 61 74 69 6f |..Batch operatio| 000023e0 6e 20 2d 20 69 65 2e 20 63 72 65 61 74 65 20 61 |n - ie. create a| 000023f0 20 74 65 78 74 20 66 69 6c 65 20 6f 66 20 63 6f | text file of co| 00002400 2d 6f 72 64 69 6e 61 74 65 73 2c 20 66 65 65 64 |-ordinates, feed| 00002410 20 69 74 20 69 6e 74 6f 0a 21 4a 75 6c 69 61 2c | it into.!Julia,| 00002420 20 67 6f 20 74 6f 20 73 6c 65 65 70 2c 20 74 68 | go to sleep, th| 00002430 65 6e 20 63 6f 6d 65 20 62 61 63 6b 20 74 6f 20 |en come back to | 00002440 66 69 6e 64 20 6c 6f 61 64 73 20 6f 66 20 6e 69 |find loads of ni| 00002450 63 65 20 73 70 72 69 74 65 73 20 6f 6e 20 79 6f |ce sprites on yo| 00002460 75 72 0a 64 69 73 6b 20 28 74 68 69 73 20 77 69 |ur.disk (this wi| 00002470 6c 6c 20 64 65 66 69 6e 69 74 65 6c 79 20 72 65 |ll definitely re| 00002480 71 75 69 72 65 20 73 70 72 69 74 65 20 63 6f 6d |quire sprite com| 00002490 70 72 65 73 73 69 6f 6e 29 2e 0a 0a 4d 61 6e 79 |pression)...Many| 000024a0 20 6d 6f 72 65 20 69 6d 61 67 65 20 6d 61 6e 69 | more image mani| 000024b0 70 75 6c 61 74 69 6f 6e 20 66 61 63 69 6c 69 74 |pulation facilit| 000024c0 69 65 73 2e 0a 0a 41 20 66 61 73 74 65 72 20 66 |ies...A faster f| 000024d0 6c 6f 61 74 69 6e 67 20 70 6f 69 6e 74 20 72 6f |loating point ro| 000024e0 75 74 69 6e 65 20 28 74 68 65 20 73 70 65 65 64 |utine (the speed| 000024f0 20 64 69 66 66 65 72 65 6e 63 65 20 69 73 20 65 | difference is e| 00002500 6d 62 61 72 61 73 73 69 6e 67 21 29 2e 0a 0a 49 |mbarassing!)...I| 00002510 20 6d 61 79 20 63 6f 6e 73 69 64 65 72 20 61 20 | may consider a | 00002520 62 61 63 6b 67 72 6f 75 6e 64 20 69 6e 74 65 67 |background integ| 00002530 65 72 20 72 6f 75 74 69 6e 65 2c 20 62 75 74 20 |er routine, but | 00002540 49 20 61 6d 20 74 68 65 20 6c 75 63 6b 79 20 6f |I am the lucky o| 00002550 77 6e 65 72 20 6f 66 20 61 6e 0a 41 52 4d 2d 33 |wner of an.ARM-3| 00002560 20 77 68 69 63 68 20 64 6f 65 73 20 74 68 65 20 | which does the | 00002570 69 6e 74 65 67 65 72 20 70 6c 6f 74 20 69 6e 20 |integer plot in | 00002580 75 6e 64 65 72 20 33 30 20 73 65 63 6f 6e 64 73 |under 30 seconds| 00002590 2c 20 36 20 73 65 63 6f 6e 64 73 20 66 6c 61 74 |, 6 seconds flat| 000025a0 20 6f 75 74 21 0a 0a 0a 46 69 6e 61 6c 20 42 6f | out!...Final Bo| 000025b0 72 69 6e 67 20 43 6f 70 79 77 72 69 67 68 74 20 |ring Copywright | 000025c0 4e 6f 74 69 63 65 0a 3d 3d 3d 3d 3d 3d 3d 3d 3d |Notice.=========| 000025d0 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d |================| 000025e0 3d 3d 3d 3d 3d 0a 54 68 65 20 63 6f 70 79 77 72 |=====.The copywr| 000025f0 69 67 68 74 20 6f 66 20 74 68 69 73 20 6d 61 74 |ight of this mat| 00002600 65 72 69 61 6c 20 62 65 6c 6f 6e 67 73 20 74 6f |erial belongs to| 00002610 20 4d 69 6b 65 20 43 75 72 6e 6f 77 20 65 78 63 | Mike Curnow exc| 00002620 65 70 74 20 66 6f 72 20 74 68 65 20 21 48 65 6c |ept for the !Hel| 00002630 70 0a 61 70 70 6c 69 63 61 74 69 6f 6e 20 77 68 |p.application wh| 00002640 69 63 68 20 62 65 6c 6f 6e 67 73 20 74 6f 20 4a |ich belongs to J| 00002650 20 52 d6 6c 69 6e 67 2e 20 54 68 69 73 20 73 6f | R.ling. This so| 00002660 66 74 77 61 72 65 20 6d 61 79 20 62 65 20 70 61 |ftware may be pa| 00002670 73 73 65 64 20 6f 6e 20 74 6f 0a 6f 74 68 65 72 |ssed on to.other| 00002680 73 20 61 73 20 6c 6f 6e 67 20 61 73 20 4e 4f 20 |s as long as NO | 00002690 43 48 41 52 47 45 53 20 41 52 45 20 4c 45 56 49 |CHARGES ARE LEVI| 000026a0 45 44 20 65 78 63 65 70 74 20 74 6f 20 63 6f 76 |ED except to cov| 000026b0 65 72 20 63 6f 73 74 73 2e 0a 0a 0a 41 72 63 68 |er costs....Arch| 000026c0 69 6d 65 64 65 73 20 46 72 61 63 74 61 6c 20 47 |imedes Fractal G| 000026d0 72 6f 75 70 20 28 41 46 47 29 0a 3d 3d 3d 3d 3d |roup (AFG).=====| 000026e0 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d |================| 000026f0 3d 3d 3d 3d 3d 3d 3d 3d 3d 0a 54 68 69 73 20 73 |=========.This s| 00002700 6f 66 74 77 61 72 65 20 69 73 20 70 61 72 74 20 |oftware is part | 00002710 6f 66 20 74 68 65 20 41 72 63 68 69 6d 65 64 65 |of the Archimede| 00002720 73 20 46 72 61 63 74 61 6c 20 47 72 6f 75 70 20 |s Fractal Group | 00002730 63 6f 6c 6c 65 63 74 69 6f 6e 2e 20 49 66 20 79 |collection. If y| 00002740 6f 75 0a 68 61 76 65 20 6f 62 74 61 69 6e 65 64 |ou.have obtained| 00002750 20 74 68 69 73 20 73 6f 66 74 77 61 72 65 20 6f | this software o| 00002760 75 74 73 69 64 65 20 6f 66 20 74 68 65 20 41 46 |utside of the AF| 00002770 47 20 61 6e 64 20 77 6f 75 6c 64 20 6c 69 6b 65 |G and would like| 00002780 20 74 6f 20 66 69 6e 64 20 6f 75 74 0a 6d 6f 72 | to find out.mor| 00002790 65 20 61 62 6f 75 74 20 46 72 61 63 74 61 6c 73 |e about Fractals| 000027a0 20 6f 6e 20 74 68 65 20 41 72 63 68 69 6d 65 64 | on the Archimed| 000027b0 65 73 2c 20 63 6f 6e 74 61 63 74 20 6d 65 20 28 |es, contact me (| 000027c0 74 68 65 20 41 46 47 20 61 64 6d 69 6e 69 73 74 |the AFG administ| 000027d0 72 61 74 6f 72 29 20 61 74 0a 74 68 65 20 61 64 |rator) at.the ad| 000027e0 64 72 65 73 73 20 62 65 6c 6f 77 2e 20 53 65 6e |dress below. Sen| 000027f0 64 20 61 20 53 41 45 20 61 6e 64 20 61 20 64 69 |d a SAE and a di| 00002800 73 6b 20 74 6f 20 67 65 74 20 61 20 66 72 65 65 |sk to get a free| 00002810 20 41 46 47 20 64 65 6d 6f 20 64 69 73 6b 2e 0a | AFG demo disk..| 00002820 0a 4d 69 6b 65 20 43 75 72 6e 6f 77 2c 0a 33 30 |.Mike Curnow,.30| 00002830 20 42 6f 77 65 6e 20 44 72 69 76 65 2c 0a 57 65 | Bowen Drive,.We| 00002840 73 74 20 44 75 6c 77 69 63 68 2c 0a 4c 6f 6e 64 |st Dulwich,.Lond| 00002850 6f 6e 0a 53 45 32 31 20 38 50 4e 0a 0a 20 20 20 |on.SE21 8PN.. | 00002860 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 00002870 20 20 20 20 0a 20 20 20 20 20 20 20 20 20 20 20 | . | 00002880 20 20 20 20 20 20 20 20 3c 3c 3c 3c 20 4d 41 59 | <<<< MAY| 00002890 20 54 48 45 20 43 48 41 4f 53 20 42 45 20 57 49 | THE CHAOS BE WI| 000028a0 54 48 20 59 4f 55 21 20 3e 3e 3e 3e 0a |TH YOU! >>>>.| 000028ad