Revision 508,
468 bytes
checked in by mattausch, 19 years ago
(diff) |
implemented view cells exporting / loading
improved vsp bsp tree (only axis aligbed until a level), reuse results from Plane
testing, collectmergeneighbors
implemented view cell meshes
|
Line | |
---|
1 | #ifndef __VIEWCELLSDPARSER_H
|
---|
2 | #define __VIEWCELLSDPARSER_H
|
---|
3 |
|
---|
4 | #include "Parser.h"
|
---|
5 | #include "Containers.h"
|
---|
6 |
|
---|
7 | class ViewCellsManager;
|
---|
8 | class VspBspTree;
|
---|
9 |
|
---|
10 | class ViewCellsParser : public Parser
|
---|
11 | {
|
---|
12 | public:
|
---|
13 | ViewCellsParser():Parser() {}
|
---|
14 |
|
---|
15 | //bool ParseFile(const string filename, ViewCellsManager &viewCells);
|
---|
16 | bool ParseFile(const string filename,
|
---|
17 | VspBspTree *tree,
|
---|
18 | ViewCellsManager *viewCells,
|
---|
19 | ObjectContainer *objects);
|
---|
20 | };
|
---|
21 |
|
---|
22 |
|
---|
23 | #endif
|
---|
Note: See
TracBrowser
for help on using the repository browser.