Package java.lang
Class Math

Public Method atan

static float atan(float a)

_INSERT_METHOD_SIGNATURE_HERE_

Description:

Returns the arc tangent of an angle, in the range of -pi/2 through pi/2.

Note

Example

   Draw.writeText("atan: " + Math.atan(0.02344f));

The example above draws the calculated value to the screen.