Skip to content

Commit 865264b

Browse files
committed
eslint fix.
1 parent 73b570f commit 865264b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

v3/src/math/interpolation/CubicBezierInterpolation.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ function P1 (t, p)
1414

1515
function P2 (t, p)
1616
{
17-
return 3 * ( 1 - t ) * t * t * p;
17+
return 3 * (1 - t) * t * t * p;
1818
}
1919

2020
function P3 (t, p)

0 commit comments

Comments
 (0)