Ignore:
Timestamp:
02/28/06 20:41:21 (18 years ago)
Author:
mattausch
Message:

debug version for testing subdivision quality

File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/Preprocessing/src/ViewCellBsp.cpp

    r660 r666  
    20872087        BspNode *farChild = NULL; 
    20882088 
     2089        const float thresh = 1 ? 1e-6f : 0.0f; 
     2090 
    20892091        while (1)  
    20902092        { 
     
    20952097                        Plane3 splitPlane = in->GetPlane(); 
    20962098                         
    2097                         const int entSide = splitPlane.Side(entp); 
    2098                         const int extSide = splitPlane.Side(extp); 
     2099                        const int entSide = splitPlane.Side(entp, thresh); 
     2100                        const int extSide = splitPlane.Side(extp, thresh); 
    20992101 
    21002102                        if (entSide < 0)  
Note: See TracChangeset for help on using the changeset viewer.