Formula

CommonFun.AccurateFloor

function CommonFun.AccurateFloor(number)
  return math.floor((number * 1000 + 0.5) / 1000)
end