00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef CONFIG_MATHUTIL_H
00016 #define CONFIG_MATHUTIL_H
00017
00018 #include "pandabase.h"
00019 #include "notifyCategoryProxy.h"
00020 #include "configVariableDouble.h"
00021 #include "configVariableEnum.h"
00022 #include "boundingVolume.h"
00023
00024 NotifyCategoryDecl(mathutil, EXPCL_PANDA_MATHUTIL, EXPTP_PANDA_MATHUTIL);
00025
00026 extern ConfigVariableDouble fft_offset;
00027 extern ConfigVariableDouble fft_factor;
00028 extern ConfigVariableDouble fft_exponent;
00029 extern ConfigVariableDouble fft_error_threshold;
00030 extern EXPCL_PANDA_MATHUTIL ConfigVariableEnum<BoundingVolume::BoundsType> bounds_type;
00031
00032 extern EXPCL_PANDA_MATHUTIL void init_libmathutil();
00033
00034 #endif
00035
00036