1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-03 17:01:21 +00:00
QB64-PE/internal/help/_D2R.txt
2017-10-10 11:55:21 -03:00

33 lines
618 B
Plaintext

{{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.047198
{{OutputEnd}}
{{PageSeeAlso}}
* [[_D2G]], [[_D2R]]
* [[_G2D]], [[_G2R]]
* [[_R2D]], [[_R2G]]
{{PageNavigation}}