We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73b570f commit 865264bCopy full SHA for 865264b
1 file changed
v3/src/math/interpolation/CubicBezierInterpolation.js
@@ -14,7 +14,7 @@ function P1 (t, p)
14
15
function P2 (t, p)
16
{
17
- return 3 * ( 1 - t ) * t * t * p;
+ return 3 * (1 - t) * t * t * p;
18
}
19
20
function P3 (t, p)
0 commit comments