Changeset 1073


Ignore:
Timestamp:
07/03/06 02:10:53 (18 years ago)
Author:
mattausch
Message:
 
Location:
GTP/trunk/Lib/Vis/Preprocessing/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/Preprocessing/src/KdTree.h

    r1072 r1073  
    193193  ObjectMap mMultipleObjects; 
    194194 
     195  /// universal counter 
     196  int mCounter; 
     197         
    195198  /** Ray set description of the rays passing through this node */ 
    196199  PassingRaySet mPassingRays; 
  • GTP/trunk/Lib/Vis/Preprocessing/src/VspOspTree.cpp

    r1072 r1073  
    11101110                        for (oit = leaf->mMultipleObjects.begin(); oit != oit_end; ++ oit) 
    11111111                        { 
    1112                                 const int id = (*oit)->first; 
    1113                                 Intersectable *object = (*oit)->second; 
     1112                                const int id = (*oit).first; 
     1113                                Intersectable *object = (*oit).second; 
    11141114 
    11151115                                if (multipleObjects[id] != object) // object not previously in pvs 
Note: See TracChangeset for help on using the changeset viewer.