1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-04 04:50:22 +00:00
QB64-PE/internal/help/_G2R__121.txt
Roland Heyder aeb9c0668b Updates help files for use with new Wiki parser (2nd try)
Note: Many files were removed (not yet existing/empty pages). The parser will try to download them on demand and will auto-generate text for missing pages (eg. most _gl pages).
2022-05-21 00:18:31 +02:00

37 lines
708 B
Plaintext

{{QBDLDATE:05-20-2022}}
{{QBDLTIME:23:08:29}}
{{DISPLAYTITLE:_G2R}}
The [[_G2R]] function converts a '''gradient''' value into a '''radian''' value.
{{PageSyntax}}
: {{Parameter|result}} = [[_G2R]]({{Parameter|num}})
{{PageAvailability}}
* '''QB64 1.0 and up''' (QB64 Team)
* '''QBPE 0.5 and up''' (QB64 Phoenix Edition)
{{PageExamples}}
''Example:'' Coverting Gradient into Radians.
{{CodeStart}}
INPUT "Give me an angle in Gradient ", D
R = _G2R(D)
PRINT "That angle in Radians is "; R
{{CodeEnd}}
{{OutputStart}}
Give me an angle in Gradient 60
That angle in Radians is .9424778
{{OutputEnd}}
{{PageSeeAlso}}
* [[_D2G]], [[_D2R]]
* [[_G2D]], [[_G2R]]
* [[_R2D]], [[_R2G]]
{{PageNavigation}}