From 8ea343545880008ce69506863153128ef78dbcbe Mon Sep 17 00:00:00 2001 From: David Rose Date: Thu, 2 Dec 2004 23:54:45 +0000 Subject: [PATCH] fix easeOut blend type --- direct/src/interval/cLerpInterval.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/direct/src/interval/cLerpInterval.cxx b/direct/src/interval/cLerpInterval.cxx index c175071e00..2a3db99c11 100644 --- a/direct/src/interval/cLerpInterval.cxx +++ b/direct/src/interval/cLerpInterval.cxx @@ -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: