Methods Summary |
---|
public static native float | ceil(float value)Returns the float conversion of the most negative (i.e. closest to
negative infinity) integer value which is greater than the argument.
|
public static native float | cos(float angle)Returns the closest float approximation of the cosine of the argument.
|
public static native float | exp(float value)Returns the closest float approximation of the raising "e" to the power
of the argument.
|
public static native float | floor(float value)Returns the float conversion of the most positive (i.e. closest to
positive infinity) integer value which is less than the argument.
|
public static native float | hypot(float x, float y)Returns {@code sqrt(}{@code x}{@code 2}{@code +}
{@code y}{@code 2}{@code )}.
|
public static native float | pow(float x, float y)Returns the closest float approximation of the result of raising {@code
x} to the power of {@code y}.
|
public static native float | sin(float angle)Returns the closest float approximation of the sine of the argument.
|
public static native float | sqrt(float value)Returns the closest float approximation of the square root of the
argument.
|