Ignore:
Timestamp:
08/28/06 03:42:51 (18 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

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

    r1287 r1288  
    5555        // minimum depth nodes 
    5656        int minDepthNodes; 
    57         // max depth nodes 
    58         int minPvsNodes; 
    59         // nodes with minimum PVS 
    60         int minRaysNodes; 
    61         // max ray contribution nodes 
    62         int maxRayContribNodes; 
     57        // nodes with minimum objects 
     58        int minObjectsNodes; 
    6359        // minimum area nodes 
    6460        int minProbabilityNodes; 
     
    9995                accumDepth = 0; 
    10096        maxDepthNodes = 0; 
    101                 minPvsNodes = 0; 
    102                 minRaysNodes = 0; 
    103                 maxRayContribNodes = 0; 
     97                minObjectsNodes = 0; 
    10498                minProbabilityNodes = 0; 
    10599                maxCostNodes = 0; 
     
    699693        bool IsObjectInLeaf(BvhLeaf *, Intersectable *object) const; 
    700694 
    701         /** Classifies view cells using the mail id. 
    702                 0 = front bv, 1 = back bv, 2 = both bvs 
    703         */ 
    704         void ClassifyViewCells( 
    705                 const ViewCellContainer &objects,  
    706                 const bool isFront) const; 
    707  
    708695        SubdivisionCandidate *PrepareConstruction( 
    709696                const VssRayContainer &sampleRays, 
    710697                const ObjectContainer &objects 
    711                 //,AxisAlignedBox3 *forcedObjectSpace 
    712698                ); 
    713699 
Note: See TracChangeset for help on using the changeset viewer.