We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db6039b commit af3e47cCopy full SHA for af3e47c
1 file changed
src/math/interpolation/QuadraticBezierInterpolation.js
@@ -8,7 +8,7 @@ function P0 (t, p)
8
{
9
var k = 1 - t;
10
11
- return k * k * k * p;
+ return k * k * p;
12
}
13
14
function P1 (t, p)
0 commit comments