home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-386-Vol-2of3.iso / b / baswiz19.zip / BW$BAS.ZIP / DEG2RADS.BAS < prev    next >
BASIC Source File  |  1993-01-29  |  661b  |  14 lines

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