Ignore:
Timestamp:
10/23/06 15:37:18 (18 years ago)
Author:
mattausch
Message:

working on render cost evaluation framework for interleaved splits

File:
1 edited

Legend:

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

    r1664 r1666  
    182182        void SetParent(BvhInterior *parent); 
    183183 
    184         // collects all objects under this node 
     184        /** collects all objects under this node. 
     185        */ 
    185186        virtual void CollectObjects(ObjectContainer &objects) = 0; 
     187 
    186188        /** The bounding box specifies the node extent. 
    187189        */ 
     
    190192        { return mBoundingBox; } 
    191193 
    192  
     194        /** Sets bouding box of this node. 
     195        */ 
    193196        inline  
    194197        void SetBoundingBox(const AxisAlignedBox3 &boundingBox)  
    195198        { mBoundingBox = boundingBox; } 
    196199 
     200 
     201        float GetMergeCost() {return 0.0f; }; 
    197202 
    198203        ///////////////////////////////////// 
Note: See TracChangeset for help on using the changeset viewer.