| ESBArcTanDeg Function | 
Unit
QESBPCSMath
Declaration
Function ESBArcTanDeg(const X, Y: Extended): Extended;
Description
Results are given between -180 and 180.
| Parameters | 
| X | First Float to process | 
| Y | Second Float to process | 
Category
Arithmetic Routines for FloatsImplementation
 
| function ESBArcTanDeg (const X, Y: Extended): Extended;
begin
     Result := Rad2Deg (ESBArcTan (X, Y));
End; | 
|  |