source:
GTP/trunk/Lib/Vis/Preprocessing/include/ViewCell.h
@
219
Revision 219, 294 bytes checked in by mattausch, 19 years ago (diff) |
---|
Line | |
---|---|
1 | #ifndef _ViewCell_H__ |
2 | #define _ViewCell_H__ |
3 | |
4 | class Mesh; |
5 | |
6 | namespace GtpVisibilityPreprocessor { |
7 | |
8 | /** |
9 | View cell represented as a mesh. |
10 | */ |
11 | class ViewCell |
12 | { |
13 | public: |
14 | ViewCell(Mesh *mesh); |
15 | |
16 | Mesh *GetMesh() {return mMesh;} |
17 | protected: |
18 | |
19 | Mesh *mMesh; |
20 | }; |
21 | |
22 | }; // GtpVisibilityPreprocessor |
23 | |
24 | #endif |
Note: See TracBrowser
for help on using the repository browser.