home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Point Programming 1
/
PPROG1.ISO
/
c
/
snippets
/
pi.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1994-04-03
|
121 b
|
7 lines
#ifndef PI
#define PI (4*atan(1))
#endif
#define deg2rad(d) ((d)*PI/180)
#define rad2deg(r) ((r)*180/PI)