Ignore:
Timestamp:
09/26/05 02:00:42 (19 years ago)
Author:
mattausch
Message:

added bsp split plane criteria

File:
1 edited

Legend:

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

    r265 r297  
    99Preprocessor::Preprocessor(): 
    1010mKdTree(NULL), 
    11 mBspTree(NULL) 
     11mBspTree(NULL), 
     12mRootViewCell(NULL) 
    1213{ 
    1314} 
     
    1819  DEL_PTR(mBspTree); 
    1920  DEL_PTR(mKdTree); 
     21  DEL_PTR(mRootViewCell); 
    2022} 
    2123 
     
    8789{ 
    8890        DEL_PTR(mBspTree); 
    89         mBspTree = new BspTree(); 
     91        DEL_PTR(mRootViewCell); 
     92        mRootViewCell = new ViewCell(); 
     93        mBspTree = new BspTree(mRootViewCell); 
    9094 
    9195        ObjectContainer objects; 
Note: See TracChangeset for help on using the changeset viewer.