Skip to content

Commit a89c6a8

Browse files
committed
Fixed undef var error.
1 parent aaa90ba commit a89c6a8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

v3/src/math/Clamp.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* @param {float} max - The maximum bounds.
88
* @return {number} The clamped value.
99
*/
10-
var Clamp = function (v, min, max)
10+
var Clamp = function (value, min, max)
1111
{
1212
return Math.max(min, Math.min(max, value));
1313
};

0 commit comments

Comments
 (0)