fix easeOut blend type

This commit is contained in:
David Rose 2004-12-02 23:54:45 +00:00
parent 8d7a27547f
commit 8ea3435458

View File

@ -72,7 +72,7 @@ compute_delta(double t) const {
case BT_ease_out:
{
double t2 = t * t;
return ((3.0 * t2) - (t2 * t)) * 0.5;
return ((3.0 * t) - (t2 * t)) * 0.5;
}
case BT_ease_in_out: