3 references to Atan2
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
829public static double Atan2Pi(double y, double x) => Atan2(y, x) / Pi;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.DecimalIeee754.Transcendental.cs (1)
1265return ConvertFloatToDecimalIeee754<double, TDecimal, TValue>(double.Atan2(yValue, xValue));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1084public static NFloat Atan2(NFloat y, NFloat x) => new NFloat(NativeType.Atan2(y._value, x._value));