Revision 863,
520 bytes
checked in by mattausch, 19 years ago
(diff) |
working on preprocessor integration
added iv stuff
|
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:
|
---|
[863] | 14 | X3dParser():Parser(), mViewCellHeight(5.0f) {}
|
---|
[162] | 15 |
|
---|
[863] | 16 | bool ParseFile(const string filename, SceneGraphNode **root, const bool loadPolygonsAsMeshes = false);
|
---|
| 17 | bool ParseFile(const string filename, ViewCellsManager &viewCells);
|
---|
[694] | 18 |
|
---|
[863] | 19 | /// height of a loaded view cell
|
---|
| 20 | float mViewCellHeight;
|
---|
| 21 | };
|
---|
[694] | 22 |
|
---|
[162] | 23 | };
|
---|
| 24 |
|
---|
| 25 | #endif
|
---|
Note: See
TracBrowser
for help on using the repository browser.