1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-07 20:20:25 +00:00
qb64/internal/help/_R2D.md

484 B

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

Syntax

result! = _R2D(num)

Availability

  • Version 1.000 and up.

Example(s)

Converting 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