source: GTP/trunk/Lib/Vis/Preprocessing/src/ViewCellsParser.h @ 1344

Revision 1344, 512 bytes checked in by mattausch, 18 years ago (diff)

worked on triangle processing. logical units will be created by grouping objects
using their visibility definitions.

Line 
1#ifndef __VIEWCELLSDPARSER_H
2#define __VIEWCELLSDPARSER_H
3
4#include "Parser.h"
5#include "Containers.h"
6
7namespace GtpVisibilityPreprocessor {
8
9class ViewCellsManager;
10class VspBspTree;
11class BoundingBoxConverter;
12class Environment;
13
14class ViewCellsParser : public Parser
15{
16public:
17  ViewCellsParser():Parser() {}
18 
19  bool ParseViewCellsFile(
20          const string filename,
21          ViewCellsManager **viewCells,
22          ObjectContainer *objects,
23          BoundingBoxConverter *bconverter);
24};
25
26}
27
28#endif
Note: See TracBrowser for help on using the repository browser.