Difference between revisions of "Radians"
From SCAR Divi Manual
(→Description) |
(→Source) |
||
Line 8: | Line 8: | ||
function Radians(const Degrees: Extended): Extended; | function Radians(const Degrees: Extended): Extended; | ||
begin | begin | ||
− | Result := Degrees * ( | + | Result := Degrees * (Pi / 180); |
end; | end; | ||
</source> | </source> |
Revision as of 00:41, 29 June 2011
Definition
function Radians(const Degrees: Extended): Extended;
Source
function Radians(const Degrees: Extended): Extended; begin Result := Degrees * (Pi / 180); end;
Availability
SCAR Divi 3.00 > Current
Description
Converts an angle defined in degrees specified by Degrees to an angle defined in radians.
Example
begin WriteLn(Radians(180)); WriteLn(Radians(90) * 2); end.
Output:
3,14159265358979 3,14159265358979