- Timestamp:
- 08/08/05 14:31:22 (19 years ago)
- Location:
- trunk/VUT/GtpVisibilityPreprocessor
- Files:
-
- 2 deleted
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/VUT/GtpVisibilityPreprocessor/src/ViewCell.h
r219 r220 7 7 8 8 class BSPInterior; 9 9 class BspPvs; 10 10 /** 11 11 View cell represented as a mesh … … 14 14 { 15 15 public: 16 ViewCell(Mesh *mesh); 16 /** Default constructor taking a mesh which represents the shape of 17 the viewcell. 18 */ 19 ViewCell(Mesh *mesh): mMesh(mesh), mPvs(NULL) {} 17 20 21 /** Returns pointer to the mesh which represents the shape of the viewcell. 22 */ 18 23 Mesh *GetMesh() {return mMesh;} 24 25 /** Returns pointer to PVS. 26 @returns PVS, i.e., the visible BSP tree nodes. 27 */ 28 BspPvs *GetPVS() {return mPvs;} 19 29 20 30 protected: 21 31 22 32 Mesh *mMesh; 33 /// the PVS (i.e., the visible bsp tree nodes) 34 BspPvs *mPvs; 23 35 24 36 };
Note: See TracChangeset
for help on using the changeset viewer.