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 | 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 | 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.
|