Functions
math.atan()
The arctangent of `angle`, in radians. It is defined for every number.
Syntax · 1 of 4
math.atan(const float angle) → const float
Arguments
angle required const float A tangent value. The contract spells this argument `angle`, though here the angle is the result rather than the value you pass. Return Type
const float Syntax · 2 of 4
math.atan(input float angle) → input float
Arguments
angle required input float A tangent value. The contract spells this argument `angle`, though here the angle is the result rather than the value you pass. Return Type
input float Syntax · 3 of 4
math.atan(simple float angle) → simple float
Arguments
angle required simple float A tangent value. The contract spells this argument `angle`, though here the angle is the result rather than the value you pass. Return Type
simple float Syntax · 4 of 4
math.atan(series float angle) → series float
Arguments
angle required series float A tangent value. The contract spells this argument `angle`, though here the angle is the result rather than the value you pass. Return Type
series float