1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-05 21:40:25 +00:00
QB64-PE/internal/help/_D2G__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
697 B
Plaintext

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