Changeset 1894 for GTP/trunk/Lib/Vis/Preprocessing/src
- Timestamp:
- 12/14/06 11:52:14 (18 years ago)
- Location:
- GTP/trunk/Lib/Vis/Preprocessing/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/Lib/Vis/Preprocessing/src/CombinedPreprocessor.cpp
r1891 r1894 89 89 90 90 CastRays(rays, vssRays, true, pruneInvalidRays); 91 totalVssRays += vssRays.size();91 totalVssRays += (int)vssRays.size(); 92 92 93 93 mMixtureDistribution->ComputeContributions(vssRays); 94 94 95 95 } 96 return true; 96 97 97 98 } -
GTP/trunk/Lib/Vis/Preprocessing/src/Halton.h
r1876 r1894 136 136 { 137 137 for (int i=0; i < dimensions; i++) 138 p[i] = GetNumber(i+1);138 p[i] = (float)GetNumber(i+1); 139 139 GenerateNext(); 140 140 } -
GTP/trunk/Lib/Vis/Preprocessing/src/Preprocessor.vcproj
r1887 r1894 344 344 </File> 345 345 <File 346 RelativePath=".\CombinedPreprocessor.cpp"> 347 </File> 348 <File 349 RelativePath=".\CombinedPreprocessor.h"> 350 </File> 351 <File 346 352 RelativePath="..\src\common.cpp"> 347 353 </File>
Note: See TracChangeset
for help on using the changeset viewer.