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

35 lines
485 B
Markdown

The [_D2G](_D2G) function converts a **degree** value into a **gradian** value.
## Syntax
> result = [_D2G](_D2G)(num)
## Availability
* Version 1.000 and up.
## Example(s)
Coverting Degrees into Gradians.
```vb
INPUT "Give me an angle in Degrees ", D
R = _D2G(D)
PRINT "That angle in Gradians is "; R
```
```text
Give me an angle in Degrees 60
That angle in Gradient is 66.66666
```
## See Also
* [_D2R](_D2R)
* [_G2D](_G2D), [_G2R](_G2R)
* [_R2D](_R2D), [_R2G](_R2G)