_R2G

From QB64 Phoenix Edition Wiki
Jump to navigation Jump to search

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


Syntax

result! = _R2G(num)


Availability

  • QB64 v1.0 and up
  • QB64-PE all versions


Examples

Example: Coverting Radian into Gradient.

INPUT "Give me an angle in Radians ", R
G = _R2G(R)
PRINT "That angle in Gradient is "; G
Give me an angle in Radians 0.5
That angle in Gradient is   31.83099


See also



Navigation:
Main Page with Articles and Tutorials
Keyword Reference - Alphabetical
Keyword Reference - By usage