source: trunk/VUT/GtpVisibilityPreprocessor/src/ViewCell.h @ 219

Revision 219, 319 bytes checked in by mattausch, 19 years ago (diff)

added viewcell.h

Line 
1#ifndef _ViewCell_H__
2#define _ViewCell_H__
3
4class Mesh;
5
6//namespace GtpVisibilityPreprocessor {
7 
8class BSPInterior;
9
10/**
11        View cell represented as a mesh
12*/
13class ViewCell
14{
15public:
16        ViewCell(Mesh *mesh);
17
18        Mesh *GetMesh() {return mMesh;}
19
20protected:
21
22        Mesh *mMesh;
23
24};
25 
26//}; // GtpVisibilityPreprocessor
27
28#endif
Note: See TracBrowser for help on using the repository browser.