1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-05 22:50:23 +00:00
QB64-PE/internal/help/_R2D__121.txt
Roland Heyder 6912727753 Update help files
Help file snapshot as of 07/31/2022.
2022-07-31 23:57:56 +02:00

37 lines
694 B
Plaintext

{{QBDLDATE:07-31-2022}}
{{QBDLTIME:23:39:27}}
{{DISPLAYTITLE:_R2D}}
The [[_R2D]] function converts a '''radian''' value into a '''degree''' value.
{{PageSyntax}}
: {{Parameter|result!}} = [[_R2D]]({{Parameter|num}})
{{PageAvailability}}
* '''QB64 1.0 and up''' (QB64 Team)
* '''QBPE 0.5 and up''' (QB64 Phoenix Edition)
{{PageExamples}}
''Example:'' Coverting Radian into Degree.
{{CodeStart}}
INPUT "Give me an angle in Radians ", D
R = _R2D(D)
PRINT "That angle in Degrees is "; R
{{CodeEnd}}
{{OutputStart}}
Give me an angle in Radians 0.5
That angle in Degrees is 28.64789
{{OutputEnd}}
{{PageSeeAlso}}
* [[_D2G]], [[_D2R]]
* [[_G2D]], [[_G2R]]
* [[_R2G]]
{{PageNavigation}}