NFloat.Atan2Pi(NFloat, NFloat) Método

Definição

Calcula o arco tangente para o quociente de dois valores e divide o resultado por pi.

public:
 static System::Runtime::InteropServices::NFloat Atan2Pi(System::Runtime::InteropServices::NFloat y, System::Runtime::InteropServices::NFloat x) = System::Numerics::IFloatingPointIeee754<System::Runtime::InteropServices::NFloat>::Atan2Pi;
public static System.Runtime.InteropServices.NFloat Atan2Pi (System.Runtime.InteropServices.NFloat y, System.Runtime.InteropServices.NFloat x);
static member Atan2Pi : System.Runtime.InteropServices.NFloat * System.Runtime.InteropServices.NFloat -> System.Runtime.InteropServices.NFloat
Public Shared Function Atan2Pi (y As NFloat, x As NFloat) As NFloat

Parâmetros

y
NFloat

A coordenada y de um ponto.

x
NFloat

A coordenada X de um ponto.

Retornos

O arco tangente de y dividido por x, dividido por pi.

Implementações

Comentários

Isso computa arctan(y / x) / π no intervalo [-1, +1].

Aplica-se a