home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / snip9707.zip / PI.H < prev    next >
C/C++ Source or Header  |  1997-07-05  |  219b  |  14 lines

  1. /* +++Date last modified: 05-Jul-1997 */
  2.  
  3. #ifndef PI__H
  4. #define PI__H
  5.  
  6. #ifndef PI
  7.  #define PI         (4*atan(1))
  8. #endif
  9.  
  10. #define deg2rad(d) ((d)*PI/180)
  11. #define rad2deg(r) ((r)*180/PI)
  12.  
  13. #endif /* PI__H */
  14.