Ignore:
Timestamp:
01/25/06 14:35:01 (18 years ago)
Author:
bittner
Message:

rss preprocessor debugging + merge

File:
1 edited

Legend:

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

    r574 r576  
    23032303                        if (entSide < 0)  
    23042304                        { 
    2305                                 node = in->GetBack(); 
    2306                                 // plane does not split ray => no far child 
    2307                                 if (extSide <= 0)  
    2308                                         continue; 
    2309  
    2310                                 farChild = in->GetFront(); // plane splits ray 
     2305                          node = in->GetBack(); 
     2306                          // plane does not split ray => no far child 
     2307                          if (extSide <= 0)  
     2308                                continue; 
     2309                           
     2310                          farChild = in->GetFront(); // plane splits ray 
    23112311                        }  
    23122312                        else if (entSide > 0) 
    23132313                        { 
    2314                                 node = in->GetFront(); 
    2315  
    2316                                 if (extSide >= 0) // plane does not split ray => no far child 
    2317                                         continue; 
     2314                          node = in->GetFront(); 
     2315 
     2316                          if (extSide >= 0) // plane does not split ray => no far child 
     2317                                continue; 
    23182318 
    23192319                                farChild = in->GetBack(); // plane splits ray 
     
    23642364        return hits; 
    23652365} 
     2366 
     2367 
     2368 
    23662369 
    23672370int VspBspTree::TreeDistance(BspNode *n1, BspNode *n2) const 
Note: See TracChangeset for help on using the changeset viewer.