Ignore:
Timestamp:
04/02/07 11:59:11 (17 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • OGRE/trunk/ogre_changes/Ogre1.2/PlugIns/OctreeSceneManager/include/OgreOctree.h

    r2257 r2308  
    177177        */ 
    178178        bool isOctreeVisible(void); 
    179         void setOctreeFullyVisible(bool visible); 
    180         /** Returns true if this node is marked visible, false otherwise.  
     179         
     180        /** Returns true if all children of this nodes are fully visible, false otherwise.  
    181181        */ 
    182182        bool isOctreeFullyVisible(void); 
     
    201201        void _updateBounds(); 
    202202 
     203        void _incNumChildren(); 
     204 
     205        void setOctreeFullyVisible(bool visible); 
     206 
     207        float getVisibilityRatio(); 
     208 
     209        void setNumVisibleLeaves(int leaves); 
     210        int getNumVisibleLeaves(); 
     211 
     212        void setNumLeaves(int leaves); 
     213        int getNumLeaves(); 
     214 
    203215protected: 
    204216         
     
    209221        int mLastVisited; 
    210222        bool mVisible; 
     223 
    211224        bool mFullyVisible; 
     225 
     226        int mNumVisibleLeaves; 
     227        int mNumLeaves; 
    212228#endif // GTP_VISIBILITY_MODIFIED_OGRE 
    213229}; 
Note: See TracChangeset for help on using the changeset viewer.