ATAN2(A, B)
Returns the inverse tangent (atan2) of A/B (result is in Radians)
Float ATAN2(Float A, Float B)
A - Float value. If it is not of type float, it is implicitly converted to type float.
B - Float value. If it is not of type float, it is implicitly converted to type float.
Inverse tangent (atan2) of A/B (result is in Radians)
> PRINT RAD_TO_DEG(ATAN2(1, 1))
44.999997
> PRINT RAD_TO_DEG(ATAN2(1, 0))
90.000000
> PRINT RAD_TO_DEG(ATAN2(0, 1))
0.000000