Changeset 220 for trunk/VUT


Ignore:
Timestamp:
08/08/05 14:31:22 (19 years ago)
Author:
mattausch
Message:
 
Location:
trunk/VUT/GtpVisibilityPreprocessor
Files:
2 deleted
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/VUT/GtpVisibilityPreprocessor/src/ViewCell.h

    r219 r220  
    77   
    88class BSPInterior; 
    9  
     9class BspPvs; 
    1010/** 
    1111        View cell represented as a mesh 
     
    1414{ 
    1515public: 
    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) {} 
    1720 
     21        /** Returns pointer to the mesh which represents the shape of the viewcell. 
     22        */ 
    1823        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;} 
    1929 
    2030protected: 
    2131 
    2232        Mesh *mMesh; 
     33        /// the PVS (i.e., the visible bsp tree nodes) 
     34        BspPvs *mPvs; 
    2335 
    2436}; 
Note: See TracChangeset for help on using the changeset viewer.