Revision 1379,
597 bytes
checked in by mattausch, 18 years ago
(diff) |
fixed sah for objeect partition
loader for single triangles also for x3d
|
Line | |
---|
1 | #ifndef __X3DPARSER_H
|
---|
2 | #define __X3DPARSER_H
|
---|
3 |
|
---|
4 | #include "Parser.h"
|
---|
5 | #include "Containers.h"
|
---|
6 |
|
---|
7 | namespace GtpVisibilityPreprocessor {
|
---|
8 |
|
---|
9 | class ViewCellsManager;
|
---|
10 |
|
---|
11 | class X3dParser : public Parser
|
---|
12 | {
|
---|
13 | public:
|
---|
14 |
|
---|
15 | X3dParser();
|
---|
16 |
|
---|
17 | bool ParseFile(
|
---|
18 | const string filename,
|
---|
19 | SceneGraphNode *root,
|
---|
20 | const bool loadMeshes = false,
|
---|
21 | vector<FaceParentInfo> *parents = NULL);
|
---|
22 |
|
---|
23 | bool ParseFile(const string filename, ViewCellsManager &viewCells);
|
---|
24 |
|
---|
25 | /// height of a loaded view cell
|
---|
26 | float mViewCellHeight;
|
---|
27 |
|
---|
28 | static float DEFAULT_VIEWCELL_HEIGHT;
|
---|
29 | };
|
---|
30 |
|
---|
31 | };
|
---|
32 |
|
---|
33 | #endif
|
---|
Note: See
TracBrowser
for help on using the repository browser.