ラジアンを角度に変換します。
#include <Math.au3>
_Degree ( $nRadians )
パラメータ
$nRadians | 角度に変換されるラジアン。 |
返し値
成功: | ラジアンから変換された角度。 |
失敗: | 空文字列を返し、@errorを1に設定。 |
注意
Sin()、Cos()、Tan()関数と組み合わせて使用できます。
関連
_Radian, Sin, Cos, Tan, ASin, ACos, ATan
例
#include <Math.au3>
$radians = 3.14159265358979
$degrees = _Degree($radians)
MsgBox(0, "Radians to Degrees", $radians & " radians = " & $degrees & " degrees")