Ignore:
Timestamp:
07/27/06 02:07:26 (18 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

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

    r1160 r1161  
    279279        /// store pvs size, used for evaluation purpose when pvss are stored only in the leaves 
    280280        int mPvsSize; 
    281         // stores number of entries in pvs 
     281        /** stores number of entries in pvs 
     282            this variable has the same value as mPvsSize for object pvs,  
     283                but usually not for kd cell based pvs 
     284        */ 
    282285        int mEntriesInPvs; 
    283286 
    284         /// if the pvs size scalar is up to date and corresponding to the real pvs size 
     287        /// if the pvs size scalar (+ entries into pvs) 
     288        /// is up to date and corresponding to the real pvs size 
    285289        bool mPvsSizeValid; 
    286290         
     
    440444        void GetPvs(ViewCell *vc, ObjectPvs &pvs) const; 
    441445 
    442         /** Returns pvs size (i.e. the number of entries weighted by their "importance". 
     446        /** Returns pvs size (i.e. the number of stored objects 
    443447        */ 
    444448        int GetPvsSize(ViewCell *vc) const; 
    445449 
    446         /** Returns actual number of object in this pvs and the children. 
    447         */ 
    448         int GetNumPvsEntries(ViewCell *vc) const; 
     450        /** Returns number of entries associated with this view cell.  
     451                This returns the same value as the GetPvsSize function for object pvs, 
     452                but most likely different values for kd node based pvs. 
     453        */ 
     454        int GetPvsEntries(ViewCell *vc) const; 
     455 
     456        /** Returns the actual number of stored entries in the view cells sub tree. 
     457        */ 
     458        int GetStoredPvsEntriesNum(ViewCell *root) const; 
    449459 
    450460        /** Returns memory cost of this view cell. 
Note: See TracChangeset for help on using the changeset viewer.