00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef MYMATH_H
00016 #define MYMATH_H
00017
00018 #include <math.h>
00019
00020 #ifdef fcos
00021 #undef fcos
00022 #endif
00023 #define fcos cos
00024 #ifdef fsin
00025 #undef fsin
00026 #endif
00027 #define fsin sin
00028 #ifdef fatan
00029 #undef fatan
00030 #endif
00031 #define fatan atan
00032 #ifdef MAX
00033 #undef MAX
00034 #endif
00035 #ifdef MIN
00036 #undef MIN
00037 #endif
00038 #define TWOPIOVER360 0.0174533
00039 #define PI 3.141592654
00040
00041 #endif