public static final int randomSign() {
   if (MathUtils.RANDOM.nextBoolean()) {
     return 1;
   }
   return -1;
 }