You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Summary: <return|Returns> the arc tangent of one number divided by another, using the <sign> of both.
Introduced: 1.0
OS: mac,windows,linux,ios,android
Platforms: desktop,server,web,mobile
Example:
atan2(-1,-1) -- returns 4/3 * pi
Example:
atan2(thisNumber,thatNumber)
Parameters:
yCoordinate: A number or an expression that evaluates to a number.
xCoordinate: A number or an expression that evaluates to a number.
The result: The result of the <atan2> <function> is <return|returned> in <radian|radians>. To get this result in <degree|degrees>, use the following <custom function>:.
Returns: The <atan2> <function> <return|returns> a number between -pi and pi.
Description:
Use the <atan2> <function> to find the arc tangent of one number divided by another when <sign> is significant.
In most cases, atan2(y,x) is equal to atan(y/x). However, if both x and y are negative, the sign of x/y is positive. In this case, the atan function <return|returns> an angle in the first quadrant, but the <atan2> <function> <return|returns> an angle in the third quadrant.
function atan2InDegrees firstArg,secondArg
return atan2(firstArg,secondArg) * 180 / pi
end atan2InDegrees
References: pi (constant), sign (glossary), radian (glossary), custom function (glossary), return (glossary), degree (glossary), function (control_st)