Panda3D
config_assimp.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_assimp.h
10  * @author rdb
11  * @date 2011-03-29
12  */
13 
14 #ifndef CONFIG_ASSIMP_H
15 #define CONFIG_ASSIMP_H
16 
17 #include "pandatoolbase.h"
18 #include "notifyCategoryProxy.h"
19 #include "configVariableBool.h"
20 #include "configVariableDouble.h"
21 #include "dconfig.h"
22 
23 ConfigureDecl(config_assimp, EXPCL_ASSIMP, EXPTP_ASSIMP);
24 NotifyCategoryDecl(assimp, EXPCL_ASSIMP, EXPTP_ASSIMP);
25 
26 extern ConfigVariableBool assimp_calc_tangent_space;
27 extern ConfigVariableBool assimp_join_identical_vertices;
28 extern ConfigVariableBool assimp_improve_cache_locality;
29 extern ConfigVariableBool assimp_remove_redundant_materials;
30 extern ConfigVariableBool assimp_fix_infacing_normals;
31 extern ConfigVariableBool assimp_optimize_meshes;
32 extern ConfigVariableBool assimp_optimize_graph;
33 extern ConfigVariableBool assimp_flip_winding_order;
34 extern ConfigVariableBool assimp_gen_normals;
35 extern ConfigVariableDouble assimp_smooth_normal_angle;
36 
37 extern EXPCL_ASSIMP void init_libassimp();
38 
39 #endif
ConfigVariableBool
This is a convenience class to specialize ConfigVariable as a boolean type.
Definition: configVariableBool.h:23
init_libassimp
EXPCL_ASSIMP void init_libassimp()
Initializes the library.
Definition: config_assimp.cxx:96
configVariableDouble.h
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
notifyCategoryProxy.h
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
configVariableBool.h
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
dconfig.h
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
pandatoolbase.h
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
ConfigVariableDouble
This is a convenience class to specialize ConfigVariable as a floating- point type.
Definition: configVariableDouble.h:24