Single.Atan2Pi(Single, Single) メソッド

定義

2 つの値の商のアークタンジェントを計算し、結果を で 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 座標。

戻り値

のアークタンジェントを y で除算し x、 を で除算します pi

実装

注釈

これは、 間隔[-1, +1]で計算されますarctan(y / x) / π

適用対象