Function Reference

_Radian

角度をラジアンに変換します。

#include <Math.au3>
_Radian ( $nDegrees )

 

パラメータ

$nDegrees ラジアンに変換される角度。

 

返し値

成功: 角度から変換されたラジアン。
失敗: 空文字列を返し、@errorを1に設定。

 

注意

Sin()、Cos()、Tan()関数と組み合わせて使用できます。

 

関連

_Degree, Sin, Cos, Tan, ASin, ACos, ATan

 


#include <Math.au3>

$degrees = 35
$radians = _Radian($degrees)

MsgBox(0, "Degrees to Radians", $degrees & " degrees = " & $radians & " radians")