forked from Fascinated/Bat
update botstats command
This commit is contained in:
27
src/main/java/cc/fascinated/bat/common/MathUtils.java
Normal file
27
src/main/java/cc/fascinated/bat/common/MathUtils.java
Normal file
@ -0,0 +1,27 @@
|
||||
package cc.fascinated.bat.common;
|
||||
|
||||
import lombok.experimental.UtilityClass;
|
||||
|
||||
import java.text.DecimalFormat;
|
||||
import java.text.DecimalFormatSymbols;
|
||||
|
||||
/**
|
||||
* @author Fascinated (fascinated7)
|
||||
*/
|
||||
@UtilityClass
|
||||
public final class MathUtils {
|
||||
/**
|
||||
* Format a number to a specific amount of decimal places.
|
||||
*
|
||||
* @param number the number to format
|
||||
* @param additional the additional decimal places to format
|
||||
* @return the formatted number
|
||||
*/
|
||||
public static double format(double number, int additional) {
|
||||
return Double.parseDouble(
|
||||
new DecimalFormat("#.#" + "#".repeat(Math.max(0, additional - 1)),
|
||||
new DecimalFormatSymbols()
|
||||
).format(number)
|
||||
);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user