R2G: Difference between revisions

From QB64 Phoenix Edition Wiki
Jump to navigation Jump to search
m (Protected "R2G" ([Edit=Allow only autoconfirmed users] (indefinite) [Move=Allow only autoconfirmed users] (indefinite)))
No edit summary
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{DISPLAYTITLE:_R2G}}
{{DISPLAYTITLE:_R2G}}
The [[_R2G]] function converts a '''radian''' value into a '''gradient''' value.  
The [[_R2G]] function converts a '''radian''' value into a '''gradient''' value.




Line 8: Line 8:


{{PageAvailability}}
{{PageAvailability}}
* '''QB64 1.0 and up''' (QB64 Team)
* '''QB64 v1.0 and up'''
* '''QBPE 0.5 and up''' (QB64 Phoenix Edition)
* '''QB64-PE all versions'''




Line 15: Line 15:
''Example:'' Coverting Radian into Gradient.
''Example:'' Coverting Radian into Gradient.
{{CodeStart}}
{{CodeStart}}
INPUT "Give me an angle in Radians ", D
{{Cl|INPUT}} {{Text|<nowiki>"Give me an angle in Radians "</nowiki>|#FFB100}}, R
R = _R2G(D)
G = {{Cl|_R2G}}(R)
PRINT "That angle in Gradient is "; R
{{Cl|PRINT}} {{Text|<nowiki>"That angle in Gradient is "</nowiki>|#FFB100}}; G
{{CodeEnd}}
{{CodeEnd}}
{{OutputStart}}
{{OutputStart}}
Line 25: Line 25:




{{PageSeeAlso}}  
{{PageSeeAlso}}
* [[_D2G]], [[_D2R]]
* [[_D2G]], [[_D2R]]
* [[_G2D]], [[_G2R]]
* [[_G2D]], [[_G2R]]
* [[_R2D]]
* [[_R2D]]




{{PageNavigation}}
{{PageNavigation}}

Latest revision as of 13:05, 29 March 2023

The _R2G function converts a radian value into a gradient value.


Syntax

result! = _R2G(num)


Availability

  • QB64 v1.0 and up
  • QB64-PE all versions


Examples

Example: Coverting Radian into Gradient.

INPUT "Give me an angle in Radians ", R
G = _R2G(R)
PRINT "That angle in Gradient is "; G
Give me an angle in Radians 0.5
That angle in Gradient is   31.83099


See also



Navigation:
Main Page with Articles and Tutorials
Keyword Reference - Alphabetical
Keyword Reference - By usage
Report a broken link