D2G: 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 Degrees "</nowiki>|#FFB100}}, D | {{Cl|INPUT}} {{Text|<nowiki>"Give me an angle in Degrees "</nowiki>|#FFB100}}, D | ||
G = {{Cl|_D2G}}(D) | |||
{{Cl|PRINT}} {{Text|<nowiki>"That angle in Gradient is "</nowiki>|#FFB100}}; | {{Cl|PRINT}} {{Text|<nowiki>"That angle in Gradient is "</nowiki>|#FFB100}}; G | ||
{{CodeEnd}} | {{CodeEnd}} | ||
{{OutputStart}} | {{OutputStart}} |
Latest revision as of 12:53, 29 March 2023
The _D2G function converts a degree value into a gradient value.
Syntax
- result = _D2G(num)
Availability
- QB64 v1.0 and up
- QB64-PE all versions
Examples
Example: Coverting Degrees into Gradient.
INPUT "Give me an angle in Degrees ", D G = _D2G(D) PRINT "That angle in Gradient is "; G |
Give me an angle in Degrees 60 That angle in Gradient is 66.66666 |
See also