Ignore:
Timestamp:
05/22/08 14:07:56 (16 years ago)
Author:
mattausch
Message:

debug version: problematic view points for vienna detected

File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/Preprocessing/src/ViewCellsManager.cpp

    r2690 r2695  
    22772277 
    22782278 
     2279void VspOspViewCellsManager::SetViewSpaceBox(const AxisAlignedBox3 &box) 
     2280{ 
     2281        mViewSpaceBox = box; 
     2282        mHierarchyManager->mVspTree->mBoundingBox = box; 
     2283 
     2284        cout << "vsp bounding box: " << box << endl; 
     2285        // hack: create clip plane relative to new view space box 
     2286        CreateClipPlane(); 
     2287        // the total area of the view space has changed 
     2288        mTotalAreaValid = false; 
     2289} 
     2290 
     2291 
    22792292void ViewCellsManager::CreateClipPlane() 
    22802293{ 
     
    62186231                if (exporter) 
    62196232                { 
    6220                         if (CLAMP_TO_BOX) 
    6221                         {        
    6222                                 exporter->mClampToBox = true;    
    6223                         } 
     6233                        if (CLAMP_TO_BOX) exporter->mClampToBox = true;          
    62246234 
    62256235                        const long starttime = GetTime(); 
     
    65346544        CreateUniqueViewCellIds(); 
    65356545 
    6536         int numBoxes = mPreprocessor->mKdTree->mKdIntersectables.size(); 
     6546        int numBoxes = (int)mPreprocessor->mKdTree->mKdIntersectables.size(); 
    65376547        stream.write(reinterpret_cast<char *>(&numBoxes), sizeof(int)); 
    65386548 
     
    65666576        //-- export the view cells and the pvs 
    65676577 
    6568         int numViewCells = mViewCells.size(); 
     6578        int numViewCells = (int)mViewCells.size(); 
    65696579        stream.write(reinterpret_cast<char *>(&numViewCells), sizeof(int)); 
    65706580 
Note: See TracChangeset for help on using the changeset viewer.