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 |
m (Protected "G2R" ([Edit=Allow only autoconfirmed users] (indefinite) [Move=Allow only autoconfirmed users] (indefinite))) |
(No difference)
|
Revision as of 23:08, 29 April 2022
The _G2R function converts a gradient value into a radian value.
Syntax
- result = _G2R(num)
Availability
- QB64 1.0 and up (QB64 Team)
- QBPE 0.5 and up (QB64 Phoenix Edition)
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