函数参考


_Degree

将弧度转换为角度.

#include <Math.au3>
_Degree ( $nRadians )

参数

$nRadians 可以被转换为角度的弧度.

返回值

成功: 从弧度转换得到的角度.
失败: 空字符串并设置 @error 为 1.

注意/说明

可与 Sin(), Cos(), 和 Tan() 函数一起使用.

相关

_Radian, Sin, Cos, Tan, ASin, ACos, ATan

示例/演示


#include <Math.au3>

Local $radians = 3.14159265358979
Local $degrees = _Degree($radians)

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