home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Collection of Education
/
collectionofeducationcarat1997.iso
/
COMPUSCI
/
NERVES.ZIP
/
NO87
/
LCOS.C
< prev
next >
Wrap
Text File
|
1990-12-23
|
253b
|
15 lines
/*
* NAME: lcos(irad)
*
* FUNCTION: lcos returns by table lookup the cos of irad (radx1000)
*/
int lcos(irad)
int irad;
{
while (irad < 0)
irad += TWOPI;
while (irad >= TWOPI)
irad -= TWOPI;
return(icos[(irad+1)/2]);
}