mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2025-08-31 19:04:55 +00:00
And add a bit of error handling to CharSelectGF & CharSelectSubState Co-Authored-By: Linus Torvalds <torvalds@linux-foundation.org>
26 lines
566 B
Haxe
26 lines
566 B
Haxe
package funkin.util.tools;
|
|
|
|
/**
|
|
* Utilities for performing common math operations.
|
|
*/
|
|
@:nullSafety
|
|
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));
|
|
}
|
|
|
|
/**
|
|
Round a float to a certain number of decimal places.
|
|
**/
|
|
public static function round(number:Float, precision:Int = 2):Float
|
|
{
|
|
number *= Math.pow(10, precision);
|
|
return Math.round(number) / Math.pow(10, precision);
|
|
}
|
|
}
|