Single.Atan2Pi(Single, Single) 方法

定义

计算两个值的商的反正切值,并将结果 pi除以 。

public:
 static float Atan2Pi(float y, float x) = System::Numerics::IFloatingPointIeee754<float>::Atan2Pi;
public static float Atan2Pi (float y, float x);
static member Atan2Pi : single * single -> single
Public Shared Function Atan2Pi (y As Single, x As Single) As Single

参数

y
Single

点的 y 坐标。

x
Single

点的 x 坐标。

返回

除以 xy反正切值,除以 pi

实现

注解

这在间隔 [-1, +1]中计算arctan(y / x) / π

适用于