home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / i / invtrig.zip / INVTRIG.DOC next >
Text File  |  1992-11-27  |  2KB  |  47 lines

  1.  
  2.  
  3.                                  InvTrig
  4.  
  5.          InvTrig was written for use in Turbo Pascal 6.0, but should
  6.      work in 5.0, 5.5, and perhaps in earlier versions.
  7.  
  8.          InvTrig was first conceived when a friend had asked me if I
  9.      had any units or procedures for giving the inverse of the sine,
  10.      cosine, and tangent functions. I searched around for some, but
  11.      I came up empty handed. I was surprised to find every
  12.      imaginable trig and calculus function in shareware and in the
  13.      public domain, except these three.  So, two days later, InvTrig
  14.      was born.
  15.  
  16.          InvTrig is three functions rolled into one unit.
  17.  
  18.          InvSin(X)      : Returns the Inverse Sine of X.
  19.          InvCos(X)      : Returns the Inverse Cosine of X.
  20.          InvTan(X)      : Returns the Inverse Tangent of X.
  21.  
  22.          All values returned are of the Real number type. Input
  23.      values for InvSin and InvCos must be between -1 and 1. There
  24.      isn't any error checking built into the functions, so care must
  25.      be taken. A value outside of that range will result in an error
  26.      or may give unpredictable results.
  27.  
  28.          TrigTest is a small program to show InvTrig functions in
  29.      action. The results were truncated when written to the screen,
  30.      or else they would have been expressed in scientific notation.
  31.  
  32.          InvTrig is being released "AS IS" into the public domain.
  33.      RAM Software Development will not assume any responsibility for
  34.      damages and loss of profit, and will not provide any expressed
  35.      or implied warranties. Use this software at your own risk.
  36.  
  37.          InvTrig may be distributed freely, provided that all files
  38.      (INVTRIG.DOC, INVTRIG.PAS, INVTRIG.TPU, TRIGTEST.PAS,
  39.      TRIGTEST.EXE) are distributed together, and that no other files
  40.      are appended to the distribution archive or disk.
  41.  
  42.      Turbo Pascal is a registered trademark of Borland International
  43.  
  44.  
  45.          InvTrig   Copyright (c) 1992, RAM Software Development
  46.