From 400feab8f0165b38fb4ef74551abbd76f0b44a76 Mon Sep 17 00:00:00 2001 From: Par Winzell Date: Thu, 1 Nov 2007 15:27:05 +0000 Subject: [PATCH] It's a bit counterintuitive that nothing in nenya/build.xml actually looks at all the ActionScript files... I keep forgetting. git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@328 ed5b42cb-e716-0410-a449-f6a68f950b19 --- src/as/com/threerings/flash/path/HermiteFunc.as | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/as/com/threerings/flash/path/HermiteFunc.as b/src/as/com/threerings/flash/path/HermiteFunc.as index 5e6cccfc..a13f0c5b 100644 --- a/src/as/com/threerings/flash/path/HermiteFunc.as +++ b/src/as/com/threerings/flash/path/HermiteFunc.as @@ -44,7 +44,7 @@ public class HermiteFunc extends InterpFunc return _p0; } else { var tt :Number = t*t; - var ttt :Number = t2 * t; + var ttt :Number = tt * t; return int(_p0 * (2*ttt - 3*tt + 1) + _m0 * (ttt - 2*tt + t) +