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