NFloat.SinCosPi(NFloat) Método

Definição

Calcula o seno e o cosseno de um valor.

public:
 static ValueTuple<System::Runtime::InteropServices::NFloat, System::Runtime::InteropServices::NFloat> SinCosPi(System::Runtime::InteropServices::NFloat x) = System::Numerics::ITrigonometricFunctions<System::Runtime::InteropServices::NFloat>::SinCosPi;
public static (System.Runtime.InteropServices.NFloat SinPi, System.Runtime.InteropServices.NFloat CosPi) SinCosPi (System.Runtime.InteropServices.NFloat x);
static member SinCosPi : System.Runtime.InteropServices.NFloat -> ValueTuple<System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat>
Public Shared Function SinCosPi (x As NFloat) As ValueTuple(Of NFloat, NFloat)

Parâmetros

x
NFloat

O valor, em meias revoluções, que é múltiplo por pi antes de calcular seu seno e cosseno.

Retornos

O seno e cosseno de x.

Implementações

Comentários

Isso calcula (sin(x), cos(x)).

Aplica-se a