Changeset 351


Ignore:
Timestamp:
10/27/05 03:31:56 (19 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

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

    r350 r351  
    16071607bool BspTree::MergeNecessary(BspLeaf *front, BspLeaf *back) const 
    16081608{ 
    1609         //if (Raydiff 
    1610         return true; 
     1609        if ((front->mPiercingRays.size() < 2) || 
     1610                (back->mPiercingRays.size() < 2)) 
     1611                return true; 
     1612        //else if ((Raydiff(front, back) > 100) || 
     1613        //                 (Raydiff(back, front) > 100))return true; 
     1614 
     1615        return false; 
    16111616} 
    16121617 
Note: See TracChangeset for help on using the changeset viewer.