Ignore:
Timestamp:
09/18/06 02:23:47 (18 years ago)
Author:
mattausch
Message:

debugging after merge

File:
1 edited

Legend:

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

    r1328 r1404  
    466466  mSceneGraph->CollectObjects(&mObjects); 
    467467 
    468   //-- load view cells from file or reconstruct them 
    469468  if (!mLoadViewCells) 
    470469  { 
     470          //-- generate new view cells or reconstruct them 
     471          //-- for construction the manager uses it's own set of samples 
    471472          mViewCellsManager->SetViewSpaceBox(vbox); 
    472           // construct view cells using it's own set of samples 
    473473          mViewCellsManager->Construct(this); 
    474474 
    475           //-- several visualizations and statistics 
     475          // output visualizations and statistics 
    476476          Debug << "view cells construction finished: " << endl; 
    477477          mViewCellsManager->PrintStatistics(Debug); 
    478478  } 
    479 #if 1 // test successful view cells loading by exporting them again 
     479#if 1  
    480480  else  
    481481  {       
    482           VssRayContainer dummies; 
     482          //-- load view cells from file 
     483          //-- test successful view cells loading by exporting them again 
     484      VssRayContainer dummies; 
    483485          mViewCellsManager->Visualize(mObjects, dummies); 
    484486          mViewCellsManager->ExportViewCells("test.xml.zip", mViewCellsManager->GetExportPvs(), mObjects); 
    485487  } 
    486488#endif 
     489 
    487490  VssTree *vssTree = NULL;  
    488  
    489   long initialTime = GetTime(); 
     491  const long initialTime = GetTime(); 
    490492 
    491493  if (mLoadInitialSamples) 
Note: See TracChangeset for help on using the changeset viewer.