_R2D

From QB64 Phoenix Edition Wiki
Revision as of 21:36, 1 June 2022 by RhoSigma (talk | contribs) (Removed protection from "R2D")
Jump to navigation Jump to search

The _R2D function converts a radian value into a degree value.


Syntax

result! = _R2D(num)


Availability

  • QB64 1.0 and up (QB64 Team)
  • QBPE 0.5 and up (QB64 Phoenix Edition)


Examples

Example: Coverting Radian into Degree.

INPUT "Give me an angle in Radians ", D
R = _R2D(D)
PRINT "That angle in Degrees is "; R
Give me an angle in Radians 0.5
That angle in Degrees is    28.64789


See also



Navigation:
Main Page with Articles and Tutorials
Keyword Reference - Alphabetical
Keyword Reference - By usage
Report a broken link