1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-09 21:15:12 +00:00
QB64-PE/internal/help/_G2D__121.txt

36 lines
696 B
Plaintext
Raw Normal View History

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