1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-05 17:00:26 +00:00
qb64/internal/help/_G2R.txt
2016-03-18 08:36:04 -03:00

31 lines
645 B
Plaintext

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