DEG2RAD
From MCS Wiki AVR
(Difference between revisions)
(Created page with "= <span class="f_Header">Action</span> = Converts an angle in to radians. <span style="font-family: Arial;"> </span> <span style="font-family: Arial;"> </span> =...") |
|||
Line 9: | Line 9: | ||
= <span class="f_Header">Syntax</span> = | = <span class="f_Header">Syntax</span> = | ||
− | var = <span class="f_Syntax">DEG2RAD</span>( | + | var = <span class="f_Syntax">DEG2RAD</span>( angle ) |
<span style="font-family: Arial;"> </span> | <span style="font-family: Arial;"> </span> | ||
Line 27: | Line 27: | ||
|- style="vertical-align: top;" | |- style="vertical-align: top;" | ||
| valign="top" width="13%" style="width: 66px; border: 1px solid rgb(0, 0, 0);" | | | valign="top" width="13%" style="width: 66px; border: 1px solid rgb(0, 0, 0);" | | ||
− | + | Angle | |
| valign="top" style="border: 1px solid rgb(0, 0, 0);" | | | valign="top" style="border: 1px solid rgb(0, 0, 0);" | |
Latest revision as of 20:41, 15 June 2015
Contents |
Action
Converts an angle in to radians.
Syntax
var = DEG2RAD( angle )
Remarks
Var |
A numeric variable that is assigned with the radians of variable Source. |
Angle |
The single or double variable to get the degrees of. |
All trig functions work with radians. Use deg2rad and rad2deg to convert between radians and angles.
Radian is the ratio between the length of an arc and its radius. The radian is the standard unit of angular measure.
You can find a good explanation at wikipedia.
See Also
Example
'------------------------------------------------------------------------------- 'copyright : (c) 1995-2005, MCS Electronics 'micro : Mega48 'suited for demo : yes 'commercial addon needed : no 'purpose : demonstrates DEG2RAD function '------------------------------------------------------------------------------- Dim S As Single S = 90 S = Deg2Rad(s) Print S S = Rad2deg(s) Print S End
Languages | English • Deutsch |
---|