Changeset 1888 for GTP/trunk/Lib/Vis/Preprocessing
- Timestamp:
- 12/13/06 18:11:24 (18 years ago)
- Location:
- GTP/trunk/Lib/Vis/Preprocessing/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/Lib/Vis/Preprocessing/src/SamplingStrategy.cpp
r1884 r1888 512 512 float contribution = 513 513 mPreprocessor.mViewCellsManager->ComputeSampleContributions(vssRays, true, false); 514 mDistributions[i]->mContribution + contribution;514 mDistributions[i]->mContribution += contribution; 515 515 mDistributions[i]->mRays ++; 516 516 } -
GTP/trunk/Lib/Vis/Preprocessing/src/SamplingStrategy.h
r1884 r1888 13 13 struct SimpleRay; 14 14 class SimpleRayContainer; 15 classVssRayContainer;15 struct VssRayContainer; 16 16 17 17 /** This class generates a specific sampling strategy. -
GTP/trunk/Lib/Vis/Preprocessing/src/ViewCellsManager.cpp
r1887 r1888 27 27 28 28 // $$JB HACK 29 #define USE_KD_PVS 129 #define USE_KD_PVS 0 30 30 31 31 #define KD_PVS_AREA (1e-5f) -
GTP/trunk/Lib/Vis/Preprocessing/src/main.cpp
r1887 r1888 48 48 using namespace GtpVisibilityPreprocessor; 49 49 50 Preprocessor *preprocessor = NULL;50 //Preprocessor *preprocessor = NULL; 51 51 GlRendererWidget *rendererWidget = NULL; 52 52
Note: See TracChangeset
for help on using the changeset viewer.