Changeset 1827 for GTP/trunk/Lib/Vis/Preprocessing
- Timestamp:
- 11/29/06 12:02:08 (18 years ago)
- Location:
- GTP/trunk/Lib/Vis/Preprocessing/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/Lib/Vis/Preprocessing/src/BvHierarchy.cpp
r1811 r1827 1554 1554 1555 1555 // 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)) 1558 1558 { 1559 1559 nCostRatio[axis] += 9999; -
GTP/trunk/Lib/Vis/Preprocessing/src/Preprocessor.cpp
r1824 r1827 442 442 int rayCastMethod; 443 443 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) ? 445 446 &mFaceParents : NULL; 446 447
Note: See TracChangeset
for help on using the changeset viewer.