D2R: Difference between revisions

From QB64 Phoenix Edition Wiki
Jump to navigation Jump to search
(Created page with "{{DISPLAYTITLE:_D2R}} The _D2R function converts a '''degree''' value into a '''radian''' value. {{PageSyntax}} :: {{Parameter|result}} = _D2R({{Parameter|num}}) ==Availability== * '''Version 1.000 and up.''' {{PageExamples}} ''Example:'' Coverting Degrees into Radians. {{CodeStart}} INPUT "Give me an angle in Degrees ", D R = _D2R(D) PRINT "That angle in Radians is "; R {{CodeEnd}} {{OutputStart}} Give me an angle in Degrees 60 That angle in Radians is 1....")
 
No edit summary
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{DISPLAYTITLE:_D2R}}
{{DISPLAYTITLE:_D2R}}
The [[_D2R]] function converts a '''degree''' value into a '''radian''' value.  
The [[_D2R]] function converts a '''degree''' value into a '''radian''' value.




Line 7: Line 7:




==Availability==
{{PageAvailability}}
* '''Version 1.000 and up.'''
* '''QB64 v1.0 and up'''
* '''QB64-PE all versions'''




Line 14: Line 15:
''Example:'' Coverting Degrees into Radians.
''Example:'' Coverting Degrees into Radians.
{{CodeStart}}
{{CodeStart}}
INPUT "Give me an angle in Degrees ", D
{{Cl|INPUT}} {{Text|<nowiki>"Give me an angle in Degrees "</nowiki>|#FFB100}}, D
R = _D2R(D)
R = {{Cl|_D2R}}(D)
PRINT "That angle in Radians is "; R
{{Cl|PRINT}} {{Text|<nowiki>"That angle in Radians is "</nowiki>|#FFB100}}; R
{{CodeEnd}}
{{CodeEnd}}
{{OutputStart}}
{{OutputStart}}
Line 28: Line 29:
* [[_G2D]], [[_G2R]]
* [[_G2D]], [[_G2R]]
* [[_R2D]], [[_R2G]]
* [[_R2D]], [[_R2G]]




{{PageNavigation}}
{{PageNavigation}}

Latest revision as of 23:42, 22 March 2023

The _D2R function converts a degree value into a radian value.


Syntax

result = _D2R(num)


Availability

  • QB64 v1.0 and up
  • QB64-PE all versions


Examples

Example: Coverting Degrees into Radians.

INPUT "Give me an angle in Degrees ", D
R = _D2R(D)
PRINT "That angle in Radians is "; R
Give me an angle in Degrees 60
That angle in Radians is 1.047198


See also



Navigation:
Main Page with Articles and Tutorials
Keyword Reference - Alphabetical
Keyword Reference - By usage
Report a broken link