]> git.somenet.org - pub/jan/lsdc.git/blob - src/at/ac/tuwien/lsdc/util/NumberUtils.java
Cleaned up
[pub/jan/lsdc.git] / src / at / ac / tuwien / lsdc / util / NumberUtils.java
1 package at.ac.tuwien.lsdc.util;
2
3
4 public class NumberUtils {
5
6         public static double roundDouble(double val) {
7                 return Math.floor(val * 100) / 100;
8         }
9         
10 }