R2G: 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
m (Protected "R2G" ([Edit=Allow only autoconfirmed users] (indefinite) [Move=Allow only autoconfirmed users] (indefinite))) |
m (Removed protection from "R2G") |
(No difference)
|
Revision as of 21:36, 1 June 2022
The _R2G function converts a radian value into a gradient value.
Syntax
- result! = _R2G(num)
Availability
- QB64 1.0 and up (QB64 Team)
- QBPE 0.5 and up (QB64 Phoenix Edition)
Examples
Example: Coverting Radian into Gradient.
INPUT "Give me an angle in Radians ", D R = _R2G(D) PRINT "That angle in Gradient is "; R |
Give me an angle in Radians 0.5 That angle in Gradient is 31.83099 |
See also