ラジアンを度に変換します。
Intent では、ほぼすべての場合に、度を基本とします。ただし、一部の計算はラジアンで実行した方が簡単です。関数 radians() 度からラジアンへの変換に使用できます。
degrees ( radians As Number ) As Number
引数 | [タイプ] | 説明 |
---|---|---|
radians | Number | 変換対象の値です。単位はラジアンであることを前提としています。 |
Intent >degrees(1.571)
--> 90.0116696150523
Intent >degrees(1.75 * m_pi)
--> 314.999733930882
Intent >round(degrees(1.75 * m_pi))
--> 315