This commit is contained in:
Glenn Maynard
2007-06-18 16:29:38 +00:00
parent a5f07cf73f
commit 74d36d5d21
+2
View File
@@ -82,6 +82,8 @@ inline void wrap( float &x, float n )
x = fmodf(x,n);
}
inline float fracf( float f ) { return f - truncf(f); }
template<class T>
void CircularShift( vector<T> &v, int dist )
{