We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f155bf commit 4a3f429Copy full SHA for 4a3f429
1 file changed
src/math/fuzzy/Floor.js
@@ -10,13 +10,12 @@
10
* @function Phaser.Math.Fuzzy.Floor
11
* @since 3.0.0
12
*
13
- * @param {number} a - [description]
14
- * @param {number} b - [description]
+ * @param {number} value - [description]
15
* @param {float} [epsilon=0.0001] - [description]
16
17
* @return {number} [description]
18
*/
19
-var Floor = function (a, b, epsilon)
+var Floor = function (value, epsilon)
20
{
21
if (epsilon === undefined) { epsilon = 0.0001; }
22
0 commit comments