Changeset 1073 for GTP/trunk/Lib/Vis/Preprocessing
- Timestamp:
- 07/03/06 02:10:53 (18 years ago)
- Location:
- GTP/trunk/Lib/Vis/Preprocessing/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/Lib/Vis/Preprocessing/src/KdTree.h
r1072 r1073 193 193 ObjectMap mMultipleObjects; 194 194 195 /// universal counter 196 int mCounter; 197 195 198 /** Ray set description of the rays passing through this node */ 196 199 PassingRaySet mPassingRays; -
GTP/trunk/Lib/Vis/Preprocessing/src/VspOspTree.cpp
r1072 r1073 1110 1110 for (oit = leaf->mMultipleObjects.begin(); oit != oit_end; ++ oit) 1111 1111 { 1112 const int id = (*oit) ->first;1113 Intersectable *object = (*oit) ->second;1112 const int id = (*oit).first; 1113 Intersectable *object = (*oit).second; 1114 1114 1115 1115 if (multipleObjects[id] != object) // object not previously in pvs
Note: See TracChangeset
for help on using the changeset viewer.