Panda3D
eggTrans.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 eggTrans.h
10  * @author drose
11  * @date 2000-02-14
12  */
13 
14 #ifndef EGGTRANS_H
15 #define EGGTRANS_H
16 
17 #include "pandatoolbase.h"
18 
19 #include "eggFilter.h"
20 
21 /**
22  * A program to read an egg file and write an equivalent egg file, possibly
23  * performing some minor operations along the way.
24  */
25 class EggTrans : public EggFilter {
26 public:
27  EggTrans();
28 
29  void run();
30 
31  bool _flatten_transforms;
32  bool _apply_texmats;
33  bool _collapse_equivalent_textures;
34  bool _remove_invalid_primitives;
35  bool _triangulate_polygons;
36  bool _mesh_triangles;
37  bool _standardize_names;
38 };
39 
40 #endif
A program to read an egg file and write an equivalent egg file, possibly performing some minor operat...
Definition: eggTrans.h:25
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
This is the base class for a program that reads an egg file, operates on it, and writes another egg f...
Definition: eggFilter.h:26
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.