Removed IEEERemainder for GWT compatibility.
This commit is contained in:
@@ -235,16 +235,6 @@ public class FloatMath
|
|||||||
return (v > 0f) ? ((iv == v || iv == Integer.MAX_VALUE) ? iv : (iv + 1)) : iv;
|
return (v > 0f) ? ((iv == v || iv == Integer.MAX_VALUE) ? iv : (iv + 1)) : iv;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the remainder when f1 is divided by f2.
|
|
||||||
*
|
|
||||||
* @see Math#IEEEremainder
|
|
||||||
*/
|
|
||||||
public static float IEEEremainder (float f1, float f2)
|
|
||||||
{
|
|
||||||
return (float)Math.IEEEremainder(f1, f2);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Clamps a value to the range [lower, upper].
|
* Clamps a value to the range [lower, upper].
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user