mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-05 06:14:36 +00:00
16 lines
309 B
Haxe
16 lines
309 B
Haxe
package funkin.util.tools;
|
|
|
|
/**
|
|
* Utilities for performing common math operations.
|
|
*/
|
|
class FloatTools
|
|
{
|
|
/**
|
|
* Constrain a float between a minimum and maximum value.
|
|
*/
|
|
public static function clamp(value:Float, min:Float, max:Float):Float
|
|
{
|
|
return Math.max(min, Math.min(max, value));
|
|
}
|
|
}
|