Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef __CS_CSQINT_H__
00020 #define __CS_CSQINT_H__
00021
00035 template<typename T>
00036 static inline long csQint(T n) { return (long)n; }
00037
00042 template<typename T>
00043 static inline long csQround (T n)
00044 { return (long)(n + (n < 0 ? (T)-0.5 : (T)0.5)); }
00045
00049 static inline long csQfixed8 (float n) { return (int)(n * 256.0f); }
00050
00054 static inline long csQfixed16 (float n) { return (int)(n * 65536.0f); }
00055
00059 static inline long csQfixed24 (float n) { return (int)(n * 16777216.0f); }
00060
00064 #endif // __CS_CSQINT_H__