Changeset 2575 for GTP/trunk/Lib/Vis/Preprocessing/src/Halton.cpp
- Timestamp:
- 01/03/08 15:53:44 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/Lib/Vis/Preprocessing/src/Halton.cpp
r2227 r2575 1 1 #include "Halton.h" 2 3 #ifdef PERFTIMER 2 4 #include "Timer/PerfTimer.h" 3 5 #endif 4 6 5 7 #define PREGENERATE_HALTON 0 … … 7 9 namespace GtpVisibilityPreprocessor { 8 10 11 12 #ifdef PERFTIMER 9 13 PerfTimer haltonTimer; 10 14 #endif 15 11 16 // global halton generator 12 17 … … 14 19 float Halton2::_invBases[2]; 15 20 16 float Halton<1>::_invBases[1]; 17 float Halton<2>::_invBases[2]; 18 float Halton<3>::_invBases[3]; 19 float Halton<4>::_invBases[4]; 20 float Halton<5>::_invBases[5]; 21 float Halton<6>::_invBases[6]; 21 //float Halton<6>::_invBases[6]; 22 22 23 23 template<int T> float Halton<T>::_invBases[T]; 24 24 25 Halton<1> dummmyHalton1(true); 25 26 Halton<2> dummmyHalton2(true);
Note: See TracChangeset
for help on using the changeset viewer.