MathF.Atan2(Single, Single) 方法

定义

返回其正切值是两个指定数字的商的角度。

public:
 static float Atan2(float y, float x);
public static float Atan2 (float y, float x);
static member Atan2 : single * single -> single
Public Shared Function Atan2 (y As Single, x As Single) As Single

参数

y
Single

第一个数字。

x
Single

第二个数字。

返回

正切是 yx 商的角度

注解

返回值是由 x 轴构成的笛卡尔平面中的角度,从原点(0,0,0)开始的矢量,并在点(x,y)处终止。

此方法调用基础 C 运行时,确切的结果或有效输入范围在不同操作系统或体系结构之间可能有所不同。

适用于