Ignore:
Timestamp:
10/03/06 10:10:01 (18 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

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

    r1551 r1557  
    19651965                for (vit = mViewCells.begin(); vit != vit_end; ++ vit) 
    19661966                { 
    1967                         if ((*vit)->GetId() != -1)  
     1967                        if ((*vit)->GetId() != OUT_OF_BOUNDS_ID)  
     1968                        { 
    19681969                                mViewCells[i]->SetId(i ++); 
     1970                        } 
    19691971                } 
    19701972        } 
     
    29882990                                                                                                 const AxisAlignedPlane *clipPlane 
    29892991                                                                                                 ) const 
    2990 {cout << "here55543 " << vc->GetId() << endl; 
     2992{ 
    29912993        // out of bounds cell 
    2992         if (vc->GetId() == -1) 
    2993                 return; 
     2994        //if (vc->GetId() == OUT_OF_BOUNDS_ID) return; 
    29942995 
    29952996        // export mesh if available 
     
    45004501{ 
    45014502        // out of bounds cell 
    4502         if (vc->GetId() == -1) 
    4503                 return; 
    4504  
     4503        //if (vc->GetId() == OUT_OF_BOUNDS_ID)  return; 
    45054504        if (clipPlane) 
    45064505        { 
Note: See TracChangeset for help on using the changeset viewer.