Rounds a number up to nearest multiple.
The number to round up.
The multiple to round up to.
A number rounded up to nearest multiple.
math.roundUp(17, 4); // returns 20math.roundUp(16, 4); // returns 16 Copy
math.roundUp(17, 4); // returns 20math.roundUp(16, 4); // returns 16
Rounds a number up to nearest multiple.