We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa3df26 commit 9a1a06cCopy full SHA for 9a1a06c
src/math/Math.js
@@ -70,11 +70,12 @@ _Math = {
70
71
},
72
73
- //https://en.wikipedia.org/wiki/Linear_interpolation
74
-
75
- lerp: function( x, y, t ){
+ // https://en.wikipedia.org/wiki/Linear_interpolation
+
+ lerp: function ( x, y, t ) {
76
77
return ( 1 - t ) * x + t * y;
78
79
80
81
// http://en.wikipedia.org/wiki/Smoothstep
@@ -173,4 +174,4 @@ _Math = {
173
174
};
175
176
-export { _Math };
177
+export { _Math };
0 commit comments