Ignore:
Timestamp:
11/16/06 19:41:44 (18 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

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

    r1761 r1763  
    6363        { return rayRefs / (double)Leaves(); }  
    6464 
    65  
     65         
    6666        void Reset()  
    6767        { 
     
    201201        float GetMergeCost() {return (float)-mTimeStamp; } 
    202202 
    203         int mTimeStamp; 
     203        virtual int GetRandomEdgePoint(Vector3 &point, 
     204                                                                 Vector3 &normal); 
     205 
     206        inline int GetTimeStamp() const { return mTimeStamp; } 
     207        inline void SetTimeStamp(const int timeStamp) { mTimeStamp = timeStamp; }; 
    204208 
    205209        ///////////////////////////////////// 
     
    269273        /// parent of this node 
    270274        BvhInterior *mParent; 
     275        int mTimeStamp; 
    271276}; 
    272277 
Note: See TracChangeset for help on using the changeset viewer.