D2G: Difference between revisions

From QB64 Phoenix Edition Wiki
Jump to navigation Jump to search
(Created page with "{{DISPLAYTITLE:_D2G}} The _D2G function converts a '''degree''' value into a '''gradient''' value. {{PageSyntax}} : {{Parameter|result}} = _D2G({{Parameter|num}}) ==Availability== * '''Version 1.000 and up.''' {{PageExamples}} ''Example:'' Coverting Degrees into Gradient. {{CodeStart}} INPUT "Give me an angle in Degrees ", D R = _D2G(D) PRINT "That angle in Gradient is "; R {{CodeEnd}} {{OutputStart}} Give me an angle in Degrees 60 That angle in Gradient i...")
 
No edit summary
Line 7: Line 7:




==Availability==
{{PageAvailability}}
* '''Version 1.000 and up.'''
* '''QB64 1.0 and up''' (QB64 Team)
* '''QBPE 0.5 and up''' (QB64 Phoenix Edition)





Revision as of 23:06, 29 April 2022

The _D2G function converts a degree value into a gradient value.


Syntax

result = _D2G(num)


Availability

  • QB64 1.0 and up (QB64 Team)
  • QBPE 0.5 and up (QB64 Phoenix Edition)


Examples

Example: Coverting Degrees into Gradient.

INPUT "Give me an angle in Degrees ", D
R = _D2G(D)
PRINT "That angle in Gradient is "; R
Give me an angle in Degrees 60
That angle in Gradient is  66.66666


See also



Navigation:
Main Page with Articles and Tutorials
Keyword Reference - Alphabetical
Keyword Reference - By usage
Report a broken link