/************************************************************************** trig_tables.h programmer: Floyd Henning purpose: To initialize the trig tables. **************************************************************************/ #ifndef TRIG_TABLES #define TRIG_TABLES class trig_tables { private: float atanarray[41][41]; float sqrtarray[7001]; float sinarray[361]; float cosarray[361]; public: trig_tables(); // Constructor float atan_table(int y, int x); float sqrt_table(int x); float sin_table(int x); float cos_table(int x); }; extern trig_tables table; #endif