Ignore:
Timestamp:
11/01/06 23:20:53 (18 years ago)
Author:
mattausch
Message:

worked on full render cost evaluation
warning: some change sin render cost evaluation for pvs which could have bugs

File:
1 edited

Legend:

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

    r1694 r1707  
    1212struct VssRayContainer; 
    1313class KdNode; 
    14 class BvhNode; 
     14//class BvhNode; 
     15class BvhLeaf; 
     16class Ray; 
     17 
    1518struct Face; 
    16 class Ray; 
    1719struct Triangle3; 
    18   class KdTree; 
     20 
     21class KdTree; 
    1922 
    2023 
     
    166169typedef map<KdNode *, KdIntersectable *> KdIntersectableMap; 
    167170 
    168 class BvhIntersectable: public IntersectableWrapper<BvhNode *> 
    169 { 
    170 public: 
    171         BvhIntersectable(BvhNode *item): 
    172         IntersectableWrapper<BvhNode *>(item) {} 
     171class BvhIntersectable: public IntersectableWrapper<BvhLeaf *> 
     172{ 
     173public: 
     174        BvhIntersectable(BvhLeaf *item): 
     175        IntersectableWrapper<BvhLeaf *>(item) {} 
    173176 
    174177        int Type() const 
Note: See TracChangeset for help on using the changeset viewer.