1
1
Fork 0
mirror of https://github.com/DualBrain/QB64.git synced 2023-11-19 13:10:13 +00:00
QB64-website/wiki/_D2R.md
2022-12-24 21:14:48 -06:00

494 B

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

Syntax

result = _D2R(num)

Availability

  • Version 1.000 and up.

Example(s)

Coverting Degrees into Radians.


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


Give me an angle in Degrees 60
That angle in Radians is 1.047198

See Also