Panda3D
config_mathutil.h
1 // Filename: config_mathutil.h
2 // Created by: drose (01Oct99)
3 //
4 ////////////////////////////////////////////////////////////////////
5 //
6 // PANDA 3D SOFTWARE
7 // Copyright (c) Carnegie Mellon University. All rights reserved.
8 //
9 // All use of this software is subject to the terms of the revised BSD
10 // license. You should have received a copy of this license along
11 // with this source code in a file named "LICENSE."
12 //
13 ////////////////////////////////////////////////////////////////////
14 
15 #ifndef CONFIG_MATHUTIL_H
16 #define CONFIG_MATHUTIL_H
17 
18 #include "pandabase.h"
19 #include "notifyCategoryProxy.h"
20 #include "configVariableDouble.h"
21 #include "configVariableEnum.h"
22 #include "boundingVolume.h"
23 
24 NotifyCategoryDecl(mathutil, EXPCL_PANDA_MATHUTIL, EXPTP_PANDA_MATHUTIL);
25 
26 extern ConfigVariableDouble fft_offset;
27 extern ConfigVariableDouble fft_factor;
28 extern ConfigVariableDouble fft_exponent;
29 extern ConfigVariableDouble fft_error_threshold;
30 extern EXPCL_PANDA_MATHUTIL ConfigVariableEnum<BoundingVolume::BoundsType> bounds_type;
31 
32 extern EXPCL_PANDA_MATHUTIL void init_libmathutil();
33 
34 #endif
35 
36 
This is a convenience class to specialize ConfigVariable as a floating-point type.
This class specializes ConfigVariable as an enumerated type.