source: trunk/VUT/GtpVisibilityPreprocessor/src/ViewCellsParser.h @ 508

Revision 508, 468 bytes checked in by mattausch, 18 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
7class ViewCellsManager;
8class VspBspTree;
9
10class ViewCellsParser : public Parser
11{
12public:
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.