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

Revision 860, 528 bytes checked in by mattausch, 18 years ago (diff)
Line 
1#ifndef __X3DPARSER_H
2#define __X3DPARSER_H
3
4#include "Parser.h"
5#include "Containers.h"
6
7namespace GtpVisibilityPreprocessor {
8
9class ViewCellsManager;
10
11class X3dParser : public Parser
12{
13public:
14  X3dParser():Parser(), mViewCellHeight(5.0f) {}
15 
16  bool ParseFile(const string filename, SceneGraphNode **root, const bool loadPolygonsAsMeshes = false);
17  bool ParseFile(const string filename, ViewCellsManager &viewCells);
18 
19
20
21  /// height of a loaded view cell
22  float mViewCellHeight;
23};
24
25}
26
27#endif
Note: See TracBrowser for help on using the repository browser.