_ATAN2
Revision as of 16:20, 15 November 2015 by imported>Clippy
The _ATAN2 function returns the radian angle between the positive x-axis of a plane and the point given by the coordinates (x, y).
Syntax
- angle! = _ATAN2( y, x)
Parameters
- y is the vertical axis position(row) as a positive, zero or negative floating point value.
- x is the horizontal axis position(column) as a positive, zero or negative floating point value.
Description
- _ATAN2(y, x) = ATN(y# / x#) when x > 0 with any y value. Returns positive or negative.
- The DOUBLE radian angle returned is positive for upper row values where y > 0.
- The DOUBLE radian angle returned is negative for lower row values where y < 0.
- _ATAN2(0, 0) is undefined and the function returns 0 instead of a division error.
Errors
See also
- ATN (arctangent)
- _PI (QB64 constant value)
- Mathematical Operations