G2D: Difference between revisions
Jump to navigation
Jump to search
Navigation:
Main Page with Articles and Tutorials
Keyword Reference - Alphabetical
Keyword Reference - By usage
Report a broken link
No edit summary |
No edit summary |
||
Line 16: | Line 16: | ||
{{CodeStart}} | {{CodeStart}} | ||
{{Cl|INPUT}} {{Text|<nowiki>"Give me an angle in Gradients "</nowiki>|#FFB100}}, G | {{Cl|INPUT}} {{Text|<nowiki>"Give me an angle in Gradients "</nowiki>|#FFB100}}, G | ||
D = {{Cl|_G2D}}(G) | |||
{{Cl|PRINT}} {{Text|<nowiki>"That angle in Degrees is "</nowiki>|#FFB100}}; | {{Cl|PRINT}} {{Text|<nowiki>"That angle in Degrees is "</nowiki>|#FFB100}}; D | ||
{{CodeEnd}} | {{CodeEnd}} | ||
{{OutputStart}} | {{OutputStart}} |
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