Panda3D
config_egg.h
Go to the documentation of this file.
1 /**
2  * PANDA 3D SOFTWARE
3  * Copyright (c) Carnegie Mellon University. All rights reserved.
4  *
5  * All use of this software is subject to the terms of the revised BSD
6  * license. You should have received a copy of this license along
7  * with this source code in a file named "LICENSE."
8  *
9  * @file config_egg.h
10  * @author drose
11  * @date 2000-03-19
12  */
13 
14 #ifndef CONFIG_EGG_H
15 #define CONFIG_EGG_H
16 
17 #include "pandabase.h"
18 #include "notifyCategoryProxy.h"
20 #include "configVariableBool.h"
21 #include "configVariableEnum.h"
22 #include "configVariableDouble.h"
23 #include "configVariableInt.h"
24 
25 NotifyCategoryDecl(egg, EXPCL_PANDA_EGG, EXPTP_PANDA_EGG);
26 
27 extern ConfigVariableBool egg_support_old_anims;
28 
29 extern EXPCL_PANDA_EGG ConfigVariableBool egg_mesh;
30 extern EXPCL_PANDA_EGG ConfigVariableBool egg_retesselate_coplanar;
31 extern EXPCL_PANDA_EGG ConfigVariableBool egg_unroll_fans;
32 extern EXPCL_PANDA_EGG ConfigVariableBool egg_show_tstrips;
33 extern EXPCL_PANDA_EGG ConfigVariableBool egg_show_qsheets;
34 extern EXPCL_PANDA_EGG ConfigVariableBool egg_show_quads;
35 #define egg_false_color (egg_show_tstrips | egg_show_qsheets | egg_show_quads)
36 extern EXPCL_PANDA_EGG ConfigVariableBool egg_subdivide_polys;
37 extern EXPCL_PANDA_EGG ConfigVariableBool egg_consider_fans;
38 extern EXPCL_PANDA_EGG ConfigVariableDouble egg_max_tfan_angle;
39 extern EXPCL_PANDA_EGG ConfigVariableInt egg_min_tfan_tris;
40 extern EXPCL_PANDA_EGG ConfigVariableDouble egg_coplanar_threshold;
41 extern EXPCL_PANDA_EGG ConfigVariableInt egg_test_vref_integrity;
42 extern EXPCL_PANDA_EGG ConfigVariableInt egg_recursion_limit;
43 extern EXPCL_PANDA_EGG ConfigVariableInt egg_precision;
44 
45 extern EXPCL_PANDA_EGG void init_libegg();
46 
47 #endif
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
EXPCL_PANDA_EGG void init_libegg()
Initializes the library.
Definition: config_egg.cxx:179
This is a convenience class to specialize ConfigVariable as a boolean type.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
This is a convenience class to specialize ConfigVariable as a floating- point type.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
This is a convenience class to specialize ConfigVariable as an integer type.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.