- Timestamp:
- 01/18/06 02:23:30 (19 years ago)
- Location:
- trunk/VUT/GtpVisibilityPreprocessor
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/VUT/GtpVisibilityPreprocessor/scripts/default.env
r547 r548 323 323 PostProcess { 324 324 maxCostRatio 0.001 325 minViewCells 120325 minViewCells 80 326 326 useRaysForMerge true 327 327 } -
trunk/VUT/GtpVisibilityPreprocessor/src/VspBspTree.cpp
r547 r548 2749 2749 // increase absolute merge cost 2750 2750 BspMergeCandidate::sOverallCost += mc.GetMergeCost(); 2751 2752 2751 2753 2752 … … 2764 2763 2765 2764 2766 if (( mergeStats.merged % nextPass== 0) || (nViewCells == mMergeMinViewCells))2765 if (((mergeStats.merged % nextPass) == 0) || (nViewCells == mMergeMinViewCells)) 2767 2766 { 2768 2767 mStats … … 2784 2783 if (exporter) 2785 2784 { 2785 exporter->ExportGeometry(objects); 2786 2786 Debug << "vc size " << viewCells.size() << endl; 2787 2787 ViewCellContainer::const_iterator it, it_end = viewCells.end(); … … 2789 2789 for (it = viewCells.begin(); it != it_end; ++ it) 2790 2790 { 2791 exporter->ExportGeometry(objects);2792 2791 mViewCellsManager->ExportVcGeometry(exporter, *it); 2793 2792 } … … 2797 2796 } 2798 2797 } 2798 ++ mergeStats.merged; 2799 2799 2800 2800 }
Note: See TracChangeset
for help on using the changeset viewer.