MathUtil.java 204 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 package com.canrd.patent.common.utils; /** * Created by ouyangmao on 16/6/18. */ public class MathUtil { public static int round(float d) { return (int)(d + (d < 0.0F?-0.5F:0.5F)); } }