Changeset 487 for trunk/VUT/GtpVisibilityPreprocessor/src/ViewCellBsp.h
- Timestamp:
- 01/01/06 06:25:55 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/VUT/GtpVisibilityPreprocessor/src/ViewCellBsp.h
r485 r487 211 211 */ 212 212 int GetDepth() const; 213 static int sMailId; 214 int mMailbox; 215 213 214 /** returns true if the whole subtree is valid 215 */ 216 bool TreeValid() const; 217 218 void SetTreeValid(const bool v); 219 220 //-- mailing options 221 216 222 void Mail() { mMailbox = sMailId; } 217 223 static void NewMail() { ++ sMailId; } 218 224 bool Mailed() const { return mMailbox == sMailId; } 219 225 226 static int sMailId; 227 int mMailbox; 228 220 229 protected: 221 230 231 /// if this sub tree is a completely valid view space region 232 bool mTreeValid; 222 233 /// parent of this node 223 234 BspInterior *mParent; … … 294 305 void SetViewCell(BspViewCell *viewCell); 295 306 307 /// Rays piercing this leaf. 296 308 VssRayContainer mVssRays; 297 309
Note: See TracChangeset
for help on using the changeset viewer.