Changeset 643 for GTP/trunk/Lib/Vis/Preprocessing
- Timestamp:
- 02/14/06 21:42:29 (19 years ago)
- Location:
- GTP/trunk/Lib/Vis/Preprocessing
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/Lib/Vis/Preprocessing/scripts/default.env
r639 r643 331 331 missTolerance 6 332 332 333 maxViewCells 2 56333 maxViewCells 2048 334 334 335 335 # used for pvs criterium -
GTP/trunk/Lib/Vis/Preprocessing/src/ViewCellsManager.cpp
r639 r643 16 16 #include "RssPreprocessor.h" 17 17 18 #define SAMPLE_AFTER_SUBDIVISION 118 #define SAMPLE_AFTER_SUBDIVISION 0 19 19 20 20 … … 3101 3101 if (1 || mExportRays) 3102 3102 { 3103 if ( 1)3103 if (0) 3104 3104 { 3105 3105 VssRayContainer vcRays; … … 3141 3141 3142 3142 3143 if ( 0)3143 if (1) 3144 3144 { 3145 3145 VssRayContainer vcRays; … … 3175 3175 ExportViewCellGeometry(exporter, vc); 3176 3176 3177 3178 m.mDiffuseColor = RgbColor(1, 0, 0);3179 exporter->SetForcedMaterial(m);3180 3181 3177 exporter->SetFilled(); 3182 3178 … … 3199 3195 if (!intersect->Mailed()) 3200 3196 { 3201 //m = RandomMaterial();3202 //exporter->SetForcedMaterial(m);3197 m = RandomMaterial(); 3198 exporter->SetForcedMaterial(m); 3203 3199 3204 3200 exporter->ExportIntersectable(intersect); … … 3209 3205 else 3210 3206 { 3207 m.mDiffuseColor = RgbColor(1, 0, 0); 3208 exporter->SetForcedMaterial(m); 3209 3211 3210 exporter->ExportGeometry(objects); 3212 3211 } -
GTP/trunk/Lib/Vis/Preprocessing/src/VspBspTree.cpp
r639 r643 68 68 mViewCellsManager(NULL), 69 69 mOutOfBoundsCell(NULL), 70 mStoreRays( true),70 mStoreRays(false), 71 71 mRenderCostWeight(0.5), 72 72 mUseRandomAxis(false),
Note: See TracChangeset
for help on using the changeset viewer.