Changeset 1894


Ignore:
Timestamp:
12/14/06 11:52:14 (17 years ago)
Author:
mattausch
Message:
 
Location:
GTP/trunk/Lib/Vis/Preprocessing/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/Preprocessing/src/CombinedPreprocessor.cpp

    r1891 r1894  
    8989         
    9090        CastRays(rays, vssRays, true, pruneInvalidRays); 
    91         totalVssRays += vssRays.size(); 
     91        totalVssRays += (int)vssRays.size(); 
    9292         
    9393        mMixtureDistribution->ComputeContributions(vssRays); 
    9494 
    9595  } 
     96  return true; 
    9697   
    9798} 
  • GTP/trunk/Lib/Vis/Preprocessing/src/Halton.h

    r1876 r1894  
    136136  { 
    137137        for (int i=0; i < dimensions; i++) 
    138           p[i] = GetNumber(i+1); 
     138          p[i] = (float)GetNumber(i+1); 
    139139        GenerateNext(); 
    140140  } 
  • GTP/trunk/Lib/Vis/Preprocessing/src/Preprocessor.vcproj

    r1887 r1894  
    344344                        </File> 
    345345                        <File 
     346                                RelativePath=".\CombinedPreprocessor.cpp"> 
     347                        </File> 
     348                        <File 
     349                                RelativePath=".\CombinedPreprocessor.h"> 
     350                        </File> 
     351                        <File 
    346352                                RelativePath="..\src\common.cpp"> 
    347353                        </File> 
Note: See TracChangeset for help on using the changeset viewer.