- Timestamp:
- 02/27/06 18:42:29 (19 years ago)
- Location:
- GTP/trunk/Lib/Vis
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/Lib/Vis/Preprocessing/src/VspBspTree.cpp
r664 r665 114 114 //-- termination criteria for axis aligned split 115 115 environment->GetFloatValue("VspBspTree.Termination.AxisAligned.maxRayContribution", 116 mTermMaxRayContriForAxisAligned);116 mTermMaxRayContriForAxisAligned); 117 117 environment->GetIntValue("VspBspTree.Termination.AxisAligned.minRays", 118 mTermMinRaysForAxisAligned);118 mTermMinRaysForAxisAligned); 119 119 120 120 //environment->GetFloatValue("VspBspTree.maxTotalMemory", mMaxTotalMemory); … … 164 164 Debug << "use random axis: " << mUseRandomAxis << endl; 165 165 Debug << "breath first splits: " << mBreathFirstSplits << endl; 166 166 Debug << "only driving axis: " << mOnlyDrivingAxis << endl; 167 Debug << "octree: " << mSimulateOctree << endl; 167 168 168 169 Debug << "Split plane strategy: "; … … 176 177 Debug << "axis aligned "; 177 178 } 178 /*if (mSplitPlaneStrategy & LEAST_RAY_SPLITS)179 if (mSplitPlaneStrategy & LEAST_RAY_SPLITS) 179 180 { 180 181 mCostNormalizer += mLeastRaySplitsFactor; … … 190 191 mCostNormalizer += mPvsFactor; 191 192 Debug << "pvs"; 192 } */193 } 193 194 194 195
Note: See TracChangeset
for help on using the changeset viewer.