_D2R

From QB64 Wiki
Jump to navigation Jump to search

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


Syntax

result = _D2R(num)


Availability

  • Version 1.000 and up.


Examples

Example: 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




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