Here you can find the source of roundDown(double value, double units)
public static double roundDown(double value, double units)
//package com.java2s; //License from project: LGPL public class Main { public static double roundDown(double value, double units) { double scaled = value / units; return Math.floor(scaled) * units; }// w w w . j a v a 2s.c o m }