G2R: 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 1: | Line 1: | ||
{{DISPLAYTITLE:_G2R}} | {{DISPLAYTITLE:_G2R}} | ||
The [[_G2R]] function converts a '''gradient''' value into a '''radian''' value. | The [[_G2R]] function converts a '''gradient''' value into a '''radian''' value. | ||
Line 25: | Line 25: | ||
{{PageSeeAlso}} | {{PageSeeAlso}} | ||
* [[_D2G]], [[_D2R]] | * [[_D2G]], [[_D2R]] | ||
* [[_G2D]], [[_G2R]] | * [[_G2D]], [[_G2R]] |
Revision as of 01:42, 23 January 2023
The _G2R function converts a gradient value into a radian value.
Syntax
- result = _G2R(num)
Availability
- QB64 v1.0 and up
- QB64-PE all versions
Examples
Example: Coverting Gradient into Radians.
INPUT "Give me an angle in Gradient ", D R = _G2R(D) PRINT "That angle in Radians is "; R |
Give me an angle in Gradient 60 That angle in Radians is .9424778 |
See also