A set of utils to calculate math
round, floor and ceil with fixed common problems of the native implementation
1.01 = round(value, precision);
1 = floor(value, precision);
1.01 = ceil(value, precision);
Checks if the value is in range
Normalizes any number to an integer within inclusive range
Rounds a number to the closest value in a fixed discrete series
Clamps a value between two inclusive limits