Difference between revisions of "Radians"

From SCAR Divi Manual
Jump to: navigation, search
(Description)
 
(One intermediate revision by the same user not shown)
Line 8: Line 8:
 
function Radians(const Degrees: Extended): Extended;
 
function Radians(const Degrees: Extended): Extended;
 
begin
 
begin
   Result := Degrees * (PI / 180);
+
   Result := Degrees * (Pi / 180);
 
end;
 
end;
 
</source>
 
</source>
Line 34: Line 34:
 
*[[FixR]]
 
*[[FixR]]
 
*[[AdjustR]]
 
*[[AdjustR]]
 +
*[[Pi]]
  
 
[[Category:Functions]]
 
[[Category:Functions]]
 
[[Category:Math Functions]]
 
[[Category:Math Functions]]

Latest revision as of 01:42, 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

See Also