1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-03 14:41:21 +00:00
QB64-PE/internal/help/_R2G.txt

31 lines
636 B
Plaintext
Raw Normal View History

2016-03-18 11:36:04 +00:00
{{DISPLAYTITLE:_R2G}}
The '''_R2G''' function converts a RADIAN value into a GRADIENT value.
{{PageSyntax}}
:: result = [[_R2G]](''num'')
*(Only available in QB64-GL, from Dirty Builds after 06/20/2014. Previous versions of QB64 don't support this command.)
''Example:'' Coverting Radian into Gradient.
{{CodeStart}}
INPUT "Give me an angle in Radians ", D
R = _R2G(D)
PRINT "That angle in Gradient is "; R
{{CodeEnd}}
{{OutputStart}}
Give me an angle in Radians 0.5
That angle in Gradient is 31.83099
{{OutputEnd}}
''See also:''
* [[_D2G]], [[_D2R]]
* [[_G2D]], [[_G2R]]
* [[_R2D]]
{{PageNavigation}}