G2D: Difference between revisions

From QB64 Phoenix Edition Wiki
Jump to navigation Jump to search
m (Protected "G2D" ([Edit=Allow only autoconfirmed users] (indefinite) [Move=Allow only autoconfirmed users] (indefinite)))
No edit summary
 
(5 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{DISPLAYTITLE:_G2D}}
{{DISPLAYTITLE:_G2D}}
The [[_G2D]] function converts a '''gradient''' value into a '''degree''' value.  
The [[_G2D]] function converts a '''gradient''' value into a '''degree''' 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 Gradients into Degree.
''Example:'' Coverting Gradients into Degree.
{{CodeStart}}
{{CodeStart}}
INPUT "Give me an angle in Gradients ", D
{{Cl|INPUT}} {{Text|<nowiki>"Give me an angle in Gradients "</nowiki>|#FFB100}}, G
R = _G2D(D)
D = {{Cl|_G2D}}(G)
PRINT "That angle in Degrees is "; R
{{Cl|PRINT}} {{Text|<nowiki>"That angle in Degrees is "</nowiki>|#FFB100}}; D
{{CodeEnd}}
{{CodeEnd}}
{{OutputStart}}
{{OutputStart}}
Line 25: Line 25:




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

Latest revision as of 12:54, 29 March 2023

The _G2D function converts a gradient value into a degree value.


Syntax

result = _G2D(num)


Availability

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


Examples

Example: Coverting Gradients into Degree.

INPUT "Give me an angle in Gradients ", G
D = _G2D(G)
PRINT "That angle in Degrees is "; D
Give me an angle in Gradients 60
That angle in Degrees is     54


See also



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