Ignore:
Timestamp:
01/02/06 13:42:43 (19 years ago)
Author:
mattausch
Message:

valid view point regions working now for bsp view cells (crit: maxpvs)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/VUT/GtpVisibilityPreprocessor/src/ViewCellBsp.cpp

    r487 r489  
    3939int BspTree::sFrontAndBackId = 0; 
    4040 
     41 
    4142/****************************************************************/ 
    4243/*                  class BspNode implementation                */ 
    4344/****************************************************************/ 
    4445 
     46 
    4547BspNode::BspNode():  
    46 mParent(NULL) 
     48mParent(NULL), mTreeValid(true) 
    4749{} 
    4850 
    4951BspNode::BspNode(BspInterior *parent):  
    50 mParent(parent) 
     52mParent(parent), mTreeValid(true) 
    5153{} 
    5254 
     
    210212mGenerateViewCells(true) 
    211213{ 
    212          
    213  
    214214        Randomize(); // initialise random generator for heuristics 
    215215 
     
    428428        DEL_PTR(mRoot); 
    429429 
    430         // root cell not used 
     430        // HACK: view cells not generated => root cell not used 
    431431        if (mGenerateViewCells) 
    432432                DEL_PTR(mRootCell); 
Note: See TracChangeset for help on using the changeset viewer.