home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 25 / nopv25.iso / 040A / SNIP9707.ZIP / PI.H < prev    next >
Encoding:
C/C++ Source or Header  |  1997-07-05  |  219 b   |  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.