static float pow(float a, float b)
_INSERT_METHOD_SIGNATURE_HERE_
Description:
This method calculates and returns the value of ab. In the foregoing descriptions, a floating-point value is considered to be an integer if and only if it is finite and a fixed point of the method ceil or, equivalently, a fixed point of the method floor. A value is a fixed point of a one-argument method if and only if the result of applying the method to the value is equal to the value.
Note
Example
Draw.writeText("data: " + Math.pow(3.2315523f), 9.23f));
The example above draws the calculated value to the screen.