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

482 B

The _G2D function converts a gradian value into a degree value.

Syntax

result = _G2D(num)

Availability

  • Version 1.000 and up.

Example(s)

Coverting Gradians into Degree.


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


Give me an angle in Gradians 60
That angle in Degrees is     54

See Also