Ignore:
Timestamp:
10/13/06 03:28:42 (18 years ago)
Author:
mattausch
Message:

some shit happen

Location:
GTP/trunk/Lib/Vis/Preprocessing/src
Files:
2 edited

Legend:

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

    r1614 r1616  
    608608        ViewCellsManager *vm = NULL; 
    609609 
    610         if (parser.ParseViewCellsFile(filename, &vm, objects, bconverter)) 
    611         { 
    612                 const long startTime = GetTime(); 
    613  
     610        const long startTime = GetTime(); 
     611        bool success = parser.ParseViewCellsFile(filename, &vm, objects, bconverter); 
     612 
     613        if (success) 
     614        { 
    614615                vm->ResetViewCells(); 
    615616 
     
    621622                        // create the meshes and compute volumes 
    622623                        vm->FinalizeViewCells(true); 
    623                         //                      vm->mViewCellsTree->AssignRandomColors(); 
     624                        // vm->mViewCellsTree->AssignRandomColors(); 
    624625                } 
    625626 
     
    39093910        Debug << "\nView cells after merge:\n" << mCurrentViewCellsStats << endl; 
    39103911         
    3911         if (1) // export merged view cells 
     3912        if (mShowVisualization) // export merged view cells 
    39123913        { 
    39133914                mColorCode = 0; 
     
    39403941        } 
    39413942 
    3942         if (1)  
     3943        if (mShowVisualization)  
    39433944        { 
    39443945                // use pvs size for color coding 
     
    39773978{ 
    39783979        mRenderer->RenderScene(); 
     3980 
    39793981        SimulationStatistics ss; 
    39803982        dynamic_cast<RenderSimulator *>(mRenderer)->GetStatistics(ss); 
     
    47034705                volume += lVol; 
    47044706 
    4705         CreateMesh(*it); 
     4707                if (createMesh) 
     4708                        CreateMesh(*it); 
    47064709        } 
    47074710 
  • GTP/trunk/Lib/Vis/Preprocessing/src/ViewCellsParser.cpp

    r1595 r1616  
    271271        // all bounding boxes gathered in this step =>  
    272272        // associate object ids with bounding boxes 
    273         long startTime = GetTime(); 
     273        const long startTime = GetTime(); 
    274274         
    275275        if (mBoundingBoxConverter) 
Note: See TracChangeset for help on using the changeset viewer.