More silly.

git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@363 ed5b42cb-e716-0410-a449-f6a68f950b19
This commit is contained in:
Par Winzell
2007-12-04 19:19:05 +00:00
parent 356c78e6de
commit 0ed263a6ee
@@ -61,9 +61,9 @@ public class HermiteFunc extends InterpFunc
}
var tt :Number = t*t;
return int((_p0 - _p1) * (6*tt - 6*t) +
_m0 * (3*tt - 4*t + 1) +
_m1 * (3*tt - 2*t));
return (_p0 - _p1) * (6*tt - 6*t) +
_m0 * (3*tt - 4*t + 1) +
_m1 * (3*tt - 2*t);
}
/** The coefficient for the spline that interpolates the beginning point value. */