source:
GTP/trunk/Lib/Vis/Preprocessing/src/X3dParser.h
@
1379
Revision 1379, 597 bytes checked in by mattausch, 18 years ago (diff) |
---|
Rev | Line | |
---|---|---|
[162] | 1 | #ifndef __X3DPARSER_H |
2 | #define __X3DPARSER_H | |
3 | ||
[170] | 4 | #include "Parser.h" |
[261] | 5 | #include "Containers.h" |
[162] | 6 | |
[860] | 7 | namespace GtpVisibilityPreprocessor { |
8 | ||
[439] | 9 | class ViewCellsManager; |
[261] | 10 | |
[162] | 11 | class X3dParser : public Parser |
12 | { | |
13 | public: | |
[971] | 14 | |
15 | X3dParser(); | |
[162] | 16 | |
[1221] | 17 | bool ParseFile( |
[1281] | 18 | const string filename, |
[1344] | 19 | SceneGraphNode *root, |
[1379] | 20 | const bool loadMeshes = false, |
[1281] | 21 | vector<FaceParentInfo> *parents = NULL); |
[1221] | 22 | |
[863] | 23 | bool ParseFile(const string filename, ViewCellsManager &viewCells); |
[694] | 24 | |
[863] | 25 | /// height of a loaded view cell |
26 | float mViewCellHeight; | |
[971] | 27 | |
28 | static float DEFAULT_VIEWCELL_HEIGHT; | |
[863] | 29 | }; |
[694] | 30 | |
[162] | 31 | }; |
32 | ||
33 | #endif |
Note: See TracBrowser
for help on using the repository browser.