random_utils/include/random_utils/Macros.h

Go to the documentation of this file.
00001 #ifndef _RU_MACROS_H_
00002 #define _RU_MACROS_H_
00003 
00004 namespace random_utils
00005 {
00006 
00011 template<typename T>
00012 inline T inRange(T min, T value, T max)
00013 {
00014     return (value >= max) ? max : ((value <= min) ? min : value);
00015 }
00016 
00017 } // namespace random_utils
00018 
00019 
00020 #endif // _RU_MACROS_H_

Generated on Fri May 11 21:01:58 2007 for Random Racer by  doxygen 1.5.1