atan()

Math / Trigonometry

Description

The inverse of tan, returns the arc tangent of a value.

Syntax

float atan(float x)

Parameters

NameTypeDescription
xfloatvalue

Returns

float

Related

Under the Hood

From Processing.h:

static float atan(float x) { return std::atan(x); } static float atan(float x) { return std::atan(x);