mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-05 14:24:28 +00:00
17 lines
366 B
Haxe
17 lines
366 B
Haxe
package funkin.util.tools;
|
|
|
|
/**
|
|
* Utilities for performing common math operations.
|
|
*/
|
|
class IntTools
|
|
{
|
|
/**
|
|
* Constrain an integer between a minimum and maximum value.
|
|
*/
|
|
public static function clamp(value:Int, min:Int, max:Int):Int
|
|
{
|
|
// Don't use Math.min because it returns a Float.
|
|
return value < min ? min : value > max ? max : value;
|
|
}
|
|
}
|