Changeset 1015


Ignore:
Timestamp:
06/13/06 16:29:12 (18 years ago)
Author:
mattausch
Message:
 
Location:
GTP/trunk/Lib/Vis
Files:
2 edited

Legend:

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

    r1012 r1015  
    11581158        GenerateUniqueIdsForPvs(); 
    11591159         
    1160         for (int i = 0; i < data.mRays->size(); ++ i) 
    1161         { 
    1162                 RayInfo rayInf = (*data.mRays)[i]; 
     1160        RayInfoContainer::const_iterator rit, rit_end = data.mRays.end(); 
     1161 
     1162        for (rit = data.mRays.begin(); rit != rit_end; ++ rit) 
     1163        { 
     1164                RayInfo rayInf = *rit; 
    11631165 
    11641166                float t; 
Note: See TracChangeset for help on using the changeset viewer.