home *** CD-ROM | disk | FTP | other *** search
/ Current Shareware 1994 January / SHAR194.ISO / drawing / fexplore.zip / FEXPLORE.DOC < prev    next >
Text File  |  1993-08-25  |  3KB  |  58 lines

  1. fexplore.doc - documentation for using Mandlebroit exploration program.
  2.  
  3.    This program produces colored pictures of fractals on a Tseng-Labs 4000
  4. extended vga card.  It displays them with resolution 1024 X 768 with
  5. 256 colors.  Since computing a pixels value takes so long, special logic 
  6. is used so faster pixels are computed first.  Basically the program tries to
  7. ignore any "black" areas, since they are time-consuming to calculate.  So it
  8. attempts to calculate the colored areas first.  Over time it will
  9. cover all points.
  10.  
  11.     To use the program simply run it (redirect stdout if you don't
  12.     want to see the complex-number coordinates of the image).
  13.  
  14.                  FEXPLORE >out
  15.  
  16.     Press Q at any time to quit.
  17.     Any other key brings up a box which lets you zoom into a region
  18.     of the complex plane (for a new fractal).
  19.  
  20.     The following keys do stuff:
  21.            cursors - move zoom box in appropriate direction
  22.  
  23.            x      - shrinks view box in X dimension
  24.            y      - shrinks view box in Y dimension
  25.            z      - shrinks view box in both dimensions
  26.  
  27.            X      - expands view box in X dimension
  28.            Y      - expands view box in X dimension
  29.            Z      - expands view box in both dimensions
  30.  
  31.            r      - enable/disable color palette rotation
  32.            Q      - quits
  33.            S      - saves image in file (can be viewed with DISPLAY).
  34.            ENTER  - accepts current change box, calculating new image 
  35.            ESC    - exits change box mode
  36.  
  37. About saving images:
  38.     Images are stored in a simple binary file.  The format is four doubles
  39. (specifying complex number coordinates of region image is from), followed
  40. by the contents of the graphic frame buffer.  So the files get huge: 768K.
  41. Images are automatically saved in filename: IMAGE.n  where n==1..18, one
  42. for each image you've saved.  You should rename image.* to another name
  43. so the images won't be overwritten when the next series is saved.  Note
  44. that display always uses FIRST.IMG as the starting image, so you don't have
  45. to save the first image to disk.  See the FDISPLAY program for information
  46. on displaying them.
  47.  
  48. If you use this program regularly, please send $10.00 to:
  49.     TDRMSoft
  50.     400 Central Park West - 20R        Source code in C available for $50.00
  51.     New York, NY 10025-5858                Tom Milne
  52.     (212)-865-2719                         TMILNE@AOL.COM
  53.  
  54. Free source code for anyone that helps me add graphic modes to those supported.
  55.  
  56.  
  57. ****** NOTE: If you don't have a ET4000 super-vga chip set, use FEXPLVGA
  58.