home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / basic / baswiz18.zip / BW$BAS.ZIP / DEG2RADD.BAS < prev    next >
BASIC Source File  |  1992-08-29  |  661b  |  14 lines

  1. '   +----------------------------------------------------------------------+
  2. '   |                                                                      |
  3. '   |        BASWIZ  Copyright (c) 1990-1992  Thomas G. Hanlin III         |
  4. '   |                                                                      |
  5. '   |                      The BASIC Wizard's Library                      |
  6. '   |                                                                      |
  7. '   +----------------------------------------------------------------------+
  8.  
  9.    DECLARE FUNCTION PiD# ()
  10.  
  11. FUNCTION Deg2RadD# (Nr AS DOUBLE)
  12.    Deg2RadD# = Nr * PiD# / 180#
  13. END FUNCTION
  14.