Changeset 1557 for GTP/trunk/Lib/Vis/Preprocessing/src/ViewCellsManager.cpp
- Timestamp:
- 10/03/06 10:10:01 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/Lib/Vis/Preprocessing/src/ViewCellsManager.cpp
r1551 r1557 1965 1965 for (vit = mViewCells.begin(); vit != vit_end; ++ vit) 1966 1966 { 1967 if ((*vit)->GetId() != -1) 1967 if ((*vit)->GetId() != OUT_OF_BOUNDS_ID) 1968 { 1968 1969 mViewCells[i]->SetId(i ++); 1970 } 1969 1971 } 1970 1972 } … … 2988 2990 const AxisAlignedPlane *clipPlane 2989 2991 ) const 2990 { cout << "here55543 " << vc->GetId() << endl;2992 { 2991 2993 // out of bounds cell 2992 if (vc->GetId() == -1) 2993 return; 2994 //if (vc->GetId() == OUT_OF_BOUNDS_ID) return; 2994 2995 2995 2996 // export mesh if available … … 4500 4501 { 4501 4502 // out of bounds cell 4502 if (vc->GetId() == -1) 4503 return; 4504 4503 //if (vc->GetId() == OUT_OF_BOUNDS_ID) return; 4505 4504 if (clipPlane) 4506 4505 {
Note: See TracChangeset
for help on using the changeset viewer.