home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / pdc / libsrc / math / cordic.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-04-07  |  140 b   |  12 lines

  1.  
  2. struct _CORDIC_Table {
  3.     int        size;
  4.     int        mval;
  5.     double    kval;
  6.     char    *index;
  7.     double    *coeff;
  8. };
  9.  
  10. typedef struct _CORDIC_Table CORDIC_Table;
  11.  
  12.