Ignore:
Timestamp:
02/04/06 12:46:14 (18 years ago)
Author:
mattausch
Message:

updated vspkdtree for regular sudbivision

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/VUT/GtpVisibilityPreprocessor/src/VspKdTree.cpp

    r582 r587  
    433433 
    434434        environment->GetBoolValue("VspKdTree.splitUseOnlyDrivingAxis", mOnlyDrivingAxis); 
     435        environment->GetIntValue("VspKdTree.Termination.maxViewCells", mMaxViewCells); 
    435436 
    436437        //-- output 
     
    11491150                        (leaf->GetAvgRayContribution() > mTermMaxRayContribution ) || 
    11501151                        (leaf->mDepth >= mTermMaxDepth) || 
     1152                        (mStat.Leaves() >= mMaxViewCells) || 
    11511153                        (SqrMagnitude(box.Size()) <= mTermMinSize)); 
    11521154} 
Note: See TracChangeset for help on using the changeset viewer.