atan2 function

Syntax

  • float atan2(y, x)

Parameters

  1. y, xfloat

Returns

The principal arc tangent of y/x, in the interval [-180, 180] degrees.

Description

The atan2 function calculates the principal value of the arc tangent of y/x, using the signs of both arguments to determine the quadrant of the return value.

Related


In this topic