Ignore:
Timestamp:
11/05/08 18:49:31 (16 years ago)
Author:
mattausch
Message:

orthocam not working yet

File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/App/Demos/Vis/FriendlyCulling/src/Bvh.h

    r3074 r3102  
    528528        */ 
    529529        inline BvhNode *GetRoot(); 
    530  
     530        /** Returns the static root node of the bvh. 
     531        */ 
     532        inline BvhNode *GetStaticRoot(); 
     533        /** Returns the dynamic root node of the bvh. 
     534        */ 
    531535        inline BvhNode *GetDynamicRoot(); 
    532536        /** Returns the bounding box of this bvh. 
     
    850854 
    851855 
     856BvhNode *Bvh::GetStaticRoot() 
     857{  
     858        return mStaticRoot;  
     859} 
     860 
     861 
    852862const AxisAlignedBox3 &Bvh::GetBox() const  
    853863{  
Note: See TracChangeset for help on using the changeset viewer.