source: GTP/trunk/Lib/Vis/Preprocessing/src/X3dParser.h @ 2600

Revision 2600, 598 bytes checked in by mattausch, 16 years ago (diff)

preparing for moving objects (contains compile errors!)

RevLine 
[162]1#ifndef __X3DPARSER_H
2#define __X3DPARSER_H
3
[170]4#include "Parser.h"
[261]5#include "Containers.h"
[162]6
[860]7namespace GtpVisibilityPreprocessor {
8
[439]9class ViewCellsManager;
[261]10
[162]11class X3dParser : public Parser
12{
13public:
[971]14       
15        X3dParser();
[162]16 
[2600]17        bool ParseFile(const std::string filename,
18                                   SceneGraphLeaf *root,
[1379]19                                   const bool loadMeshes = false,
[1281]20                                   vector<FaceParentInfo> *parents = NULL);
[1221]21
[2176]22        bool ParseFile(const std::string filename, ViewCellsManager &viewCells);
[694]23 
[863]24        /// height of a loaded view cell
25        float mViewCellHeight;
[971]26
27        static float DEFAULT_VIEWCELL_HEIGHT;
[863]28};
[694]29
[162]30};
31
32#endif
Note: See TracBrowser for help on using the repository browser.