NFloat.Atan2Pi(NFloat, NFloat) Method

Definition

Computes the arc-tangent for the quotient of two values and divides the result by 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

Parameters

y
NFloat

The y-coordinate of a point.

x
NFloat

The x-coordinate of a point.

Returns

The arc-tangent of y divided-by x, divided by pi.

Implements

Remarks

This computes arctan(y / x) / π in the interval [-1, +1].

Applies to