Main Page   Class Hierarchy   Alphabetical List   Data Structures   File List   Data Fields   Globals  

sincos.h

Go to the documentation of this file.
00001 #ifndef SINCOS_H
00002 #define SINCOS_H
00003 
00004 /*
00005    sincos.h
00006 
00007    Declaration for single-call sincos() function, which stuffs the sine
00008    and cosine of an angle in radians into the second and third pointer
00009    args, respectively.
00010 
00011    Some platforms may already have this defined (it's not ANSI). See
00012    sincos.c for how to access sincos() in cases where there is software
00013    support, hardware support, or neither.
00014 */
00015 
00016 extern void sincos(double rads, double *s, double *c);
00017 
00018 
00019 #endif /* #ifndef SINCOS_H */
00020 
00021 
00022 
00023 
00024 

Generated on Sun Dec 2 15:56:52 2001 for rcslib by doxygen1.2.11.1 written by Dimitri van Heesch, © 1997-2001