Advertisement
ulfben

roundToNth (limit precision of fp-values)

Feb 25th, 2017
337
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.15 KB | None | 0 0
  1. public static float roundToNth(final float val, final float precision){
  2.    return ((int) ((val * precision) + ((val < 0.0) ? -0.5 : 0.5))) / precision;
  3. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement