Panda3D
 All Classes Functions Variables Enumerations
config_egg.h
00001 // Filename: config_egg.h
00002 // Created by:  drose (19Mar00)
00003 //
00004 ////////////////////////////////////////////////////////////////////
00005 //
00006 // PANDA 3D SOFTWARE
00007 // Copyright (c) Carnegie Mellon University.  All rights reserved.
00008 //
00009 // All use of this software is subject to the terms of the revised BSD
00010 // license.  You should have received a copy of this license along
00011 // with this source code in a file named "LICENSE."
00012 //
00013 ////////////////////////////////////////////////////////////////////
00014 
00015 #ifndef CONFIG_EGG_H
00016 #define CONFIG_EGG_H
00017 
00018 #include "pandabase.h"
00019 #include "notifyCategoryProxy.h"
00020 #include "configVariableSearchPath.h"
00021 #include "configVariableBool.h"
00022 #include "configVariableEnum.h"
00023 #include "configVariableDouble.h"
00024 #include "configVariableInt.h"
00025 
00026 NotifyCategoryDecl(egg, EXPCL_PANDAEGG, EXPTP_PANDAEGG);
00027 
00028 extern ConfigVariableBool egg_support_old_anims;
00029 
00030 extern EXPCL_PANDAEGG ConfigVariableBool egg_mesh;
00031 extern EXPCL_PANDAEGG ConfigVariableBool egg_retesselate_coplanar;
00032 extern EXPCL_PANDAEGG ConfigVariableBool egg_unroll_fans;
00033 extern EXPCL_PANDAEGG ConfigVariableBool egg_show_tstrips;
00034 extern EXPCL_PANDAEGG ConfigVariableBool egg_show_qsheets;
00035 extern EXPCL_PANDAEGG ConfigVariableBool egg_show_quads;
00036 #define egg_false_color (egg_show_tstrips | egg_show_qsheets | egg_show_quads)
00037 extern EXPCL_PANDAEGG ConfigVariableBool egg_subdivide_polys;
00038 extern EXPCL_PANDAEGG ConfigVariableBool egg_consider_fans;
00039 extern EXPCL_PANDAEGG ConfigVariableDouble egg_max_tfan_angle;
00040 extern EXPCL_PANDAEGG ConfigVariableInt egg_min_tfan_tris;
00041 extern EXPCL_PANDAEGG ConfigVariableDouble egg_coplanar_threshold;
00042 extern EXPCL_PANDAEGG ConfigVariableInt egg_test_vref_integrity;
00043 extern EXPCL_PANDAEGG ConfigVariableInt egg_recursion_limit;
00044 
00045 extern EXPCL_PANDAEGG void init_libegg();
00046 
00047 #endif
 All Classes Functions Variables Enumerations