Changeset 1827


Ignore:
Timestamp:
11/29/06 12:02:08 (17 years ago)
Author:
mattausch
Message:
 
Location:
GTP/trunk/Lib/Vis/Preprocessing/src
Files:
2 edited

Legend:

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

    r1811 r1827  
    15541554 
    15551555                        // no good results for degenerate axis split 
    1556                         if (0 && 
    1557                                 (tData.mNode->GetBoundingBox().Size(axis) < Limits::Small)) 
     1556                        if (1 && 
     1557                                (tData.mNode->GetBoundingBox().Size(axis) < 0.0001))//Limits::Small)) 
    15581558                        { 
    15591559                                nCostRatio[axis] += 9999; 
  • GTP/trunk/Lib/Vis/Preprocessing/src/Preprocessor.cpp

    r1824 r1827  
    442442        int rayCastMethod; 
    443443        Environment::GetSingleton()->GetIntValue("Preprocessor.rayCastMethod", rayCastMethod); 
    444         vector<FaceParentInfo> *fi = ((rayCastMethod == RayCaster::INTEL_RAYCASTER) || (!mLoadMeshes)) ? 
     444        vector<FaceParentInfo> *fi =  
     445                ((rayCastMethod == RayCaster::INTEL_RAYCASTER) && mLoadMeshes) ? 
    445446                &mFaceParents : NULL; 
    446447 
Note: See TracChangeset for help on using the changeset viewer.