Skip to content

Commit 9a1a06c

Browse files
committed
Clean up.
1 parent aa3df26 commit 9a1a06c

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/math/Math.js

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,12 @@ _Math = {
7070

7171
},
7272

73-
//https://en.wikipedia.org/wiki/Linear_interpolation
74-
75-
lerp: function( x, y, t ){
73+
// https://en.wikipedia.org/wiki/Linear_interpolation
74+
75+
lerp: function ( x, y, t ) {
7676

7777
return ( 1 - t ) * x + t * y;
78+
7879
},
7980

8081
// http://en.wikipedia.org/wiki/Smoothstep
@@ -173,4 +174,4 @@ _Math = {
173174
};
174175

175176

176-
export { _Math };
177+
export { _Math };

0 commit comments

Comments
 (0)