source: GTP/trunk/Lib/Vis/Preprocessing/include/ViewCell.h @ 219

Revision 219, 294 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
6namespace GtpVisibilityPreprocessor {
7 
8/**
9        View cell represented as a mesh.
10*/
11class ViewCell
12{
13public:
14        ViewCell(Mesh *mesh);
15
16        Mesh *GetMesh() {return mMesh;}
17protected:
18
19        Mesh *mMesh;
20};
21 
22}; // GtpVisibilityPreprocessor
23
24#endif
Note: See TracBrowser for help on using the repository browser.