Reinstate RageFastSin because it's faster on Windows.

This commit is contained in:
Kyzentun Keeslala
2016-02-07 21:04:10 -07:00
parent acda44238d
commit 86470b7977
9 changed files with 120 additions and 69 deletions
+1 -1
View File
@@ -33,7 +33,7 @@ struct TweenDecelerate: public ITween
};
struct TweenSpring: public ITween
{
float Tween( float f ) const { return 1 - std::cos( f*PI*2.5f )/(1+f*3); }
float Tween( float f ) const { return 1 - RageFastCos( f*PI*2.5f )/(1+f*3); }
ITween *Copy() const { return new TweenSpring(*this); }
};