List of utility methods to do Float Number Truncate
return Math.round(f);
if (x < 0) { return (float) Math.ceil(x); } else { return (float) Math.floor(x);