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/_D2G.txt
2016-03-18 08:36:04 -03:00

31 lines
635 B
Plaintext

{{DISPLAYTITLE:_D2G}}
The '''_D2G''' function converts a DEGREE value into a GRADIENT value.
{{PageSyntax}}
:: result = [[_D2G]](''num'')
*(Only available in QB64-GL, from Dirty Builds after 06/20/2014. Previous versions of QB64 don't support this command.)
''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}}
''See also:''
* [[_D2R]]
* [[_G2D]], [[_G2R]]
* [[_R2D]], [[_R2G]]
{{PageNavigation}}