Make color distribution in booster more uniform

This commit is contained in:
Quercitron 2018-07-25 02:46:31 +03:00
parent d6702ea1de
commit 79120e7484
4 changed files with 95 additions and 13 deletions

View file

@ -26,4 +26,8 @@ public final class RandomUtil {
public static boolean nextBoolean() {
return ThreadLocalRandom.current().nextBoolean();
}
public static double nextDouble() {
return ThreadLocalRandom.current().nextDouble();
}
}