Panda3D
eggToMaya.h
1 // Filename: eggToMaya.h
2 // Created by: drose (11Aug05)
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 EGGTOMAYA_H
16 #define EGGTOMAYA_H
17 
18 #include "pandatoolbase.h"
19 
20 #include "eggToSomething.h"
21 
22 ////////////////////////////////////////////////////////////////////
23 // Class : EggToMaya
24 // Description : A program to read an egg file and write a maya file.
25 ////////////////////////////////////////////////////////////////////
26 class EggToMaya : public EggToSomething {
27 public:
28  EggToMaya();
29 
30  void run();
31 
32 private:
33  bool _convert_anim;
34  bool _convert_model;
35  bool _respect_normals;
36 };
37 
38 #endif
39 
A program to read an egg file and write a maya file.
Definition: eggToMaya.h:26
This is the general base class for a file-converter program that reads some model file format and gen...