atan()
Math / TrigonometryDescription
The inverse of tan, returns the arc tangent of a value.
Syntax
float atan(float x)
Parameters
| Name | Type | Description |
|---|---|---|
| x | float | value |
Returns
floatRelated
Under the Hood
From Processing.h:
static float atan(float x) { return std::atan(x); }
static float atan(float x) { return std::atan(x);