static float exp(float a)
_INSERT_METHOD_SIGNATURE_HERE_
Description:
Returns Euler's number e raised to the power of a float value.
Note
Example
Draw.writeText("data: " + Math.exp(3.2315523f));
The example above draws the calculated value to the screen.