Ignore:
Timestamp:
01/31/07 18:11:51 (17 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/OnlineCullingCHC/OGRE/src/OgreKdTree.cpp

    r2066 r2069  
    15091509} 
    15101510 
    1511 void KdTree::recFindNodesIn(const AxisAlignedBox &box, std::list<SceneNode *> &list, SceneNode *exclude, Node * node, bool full) 
     1511void KdTree::recFindNodesIn(const AxisAlignedBox &box,  
     1512                                                        std::list<SceneNode *> &list,  
     1513                                                        SceneNode *exclude,  
     1514                                                        Node * node,  
     1515                                                        bool full) 
    15121516{ 
    15131517        // check intersection 
     
    15281532                        it != leaf->mKdRenderables.end(); it ++) 
    15291533                { 
    1530                         SceneNode *sn = static_cast<SceneNode *>(*it); 
     1534                        SceneNode *sn = static_cast<KdTreeSceneNode *>(*it); 
    15311535 
    15321536                        if (sn != exclude) 
Note: See TracChangeset for help on using the changeset viewer.