_R2G

From QB64 Wiki
Jump to navigation Jump to search

The _R2G function converts a radian value into a gradient value.


Syntax

result! = _R2G(num)


Availability

  • Version 1.000 and up.


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




Navigation:
Go to Keyword Reference - Alphabetical
Go to Keyword Reference - By usage
Go to Main WIKI Page