Changeset 1015
- Timestamp:
- 06/13/06 16:29:12 (18 years ago)
- Location:
- GTP/trunk/Lib/Vis
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/Lib/Vis/Preprocessing/src/VspOspTree.cpp
r1012 r1015 1158 1158 GenerateUniqueIdsForPvs(); 1159 1159 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; 1163 1165 1164 1166 float t;
Note: See TracChangeset
for help on using the changeset viewer.