home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / progbas / realfun.arj / DEMO.TXT < prev    next >
Text File  |  1991-07-20  |  2KB  |  36 lines

  1.  
  2.  
  3.          RealFun:  Real & Complex Math Libraries for QuickBASIC
  4.          DEMO.TXT
  5.  
  6.          Included in this package are 4 demonstration programs, so
  7.          that you can get a feel for how the libraries are used.  The
  8.          sources are stored in text mode so they can be accessed with
  9.          your favorite text processor (like 'more').  The executables
  10.          are stand-alone; they don't need any of the QuickBASIC
  11.          modules to run.
  12.  
  13.          DEMOATAN shows how functions in REALFUN can compute the
  14.          inverse tangent, properly accounting for the quadrant in
  15.          which the angle lies.  QuickBASIC's inverse tangent
  16.          function, ATN, would give -0.7854 radians as the inverse
  17.          tangent of -1, whereas REALFUN would give you -0.7854, or
  18.          2.3562 radians, or -45 or 135 degrees, depending on what you
  19.          want.
  20.  
  21.          DEMOTRIG runs through the gamut of the circular and
  22.          hyperbolic trigonometric functions, tabulating the different
  23.          values for different angles.
  24.  
  25.          DEMOJUL displays a Julia set fractal on a 320 x 200 x 256
  26.          screen.  This program is slow, but is a powerful framework
  27.          for "rolling-your-own" fractals.  To interrupt the program,
  28.          hit any key.  The finished product is contained in
  29.          DEMOJUL.GIF.
  30.  
  31.          DEMONEWT displays another type of fractal, that resulting
  32.          from applying Newton's method to the equation z^4 = 1. 
  33.          Again, this is not a quick program, but provides a framework
  34.          for developing your own fractals.  To stop the program in
  35.          mid-draw, hit any key.  The finished picture is NEWTON.GIF.
  36.