ESBCosDeg Function |
Unit
QESBPCSMath
Declaration
Function ESBCosDeg(const Angle: Extended): Extended;
Parameters |
Angle | Angle in Degrees. |
Category
Arithmetic Routines for FloatsImplementation
function ESBCosDeg (const Angle: Extended): Extended; begin Result := Cos (Deg2Rad (Angle)); End; |
|