Panda3D
 All Classes Functions Variables Enumerations
daeToEgg.h
1 // Filename: daeToEgg.h
2 // Created by: pro-rsoft (08May08)
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 DAETOEGG_H
16 #define DAETOEGG_H
17 
18 #include "pandatoolbase.h"
19 
20 #include "somethingToEgg.h"
21 #include "daeToEggConverter.h"
22 
23 ////////////////////////////////////////////////////////////////////
24 // Class : DAEToEgg
25 // Description : A program to read a DAE file and generate an egg
26 // file.
27 ////////////////////////////////////////////////////////////////////
28 class DAEToEgg : public SomethingToEgg {
29 public:
30  DAEToEgg();
31 
32  void run();
33 
34 private:
35  bool _invert_transparency;
36 };
37 
38 #endif
This is the general base class for a file-converter program that reads some model file format and gen...
A program to read a DAE file and generate an egg file.
Definition: daeToEgg.h:28