2 references to Atan2
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1440
public static Half Atan2(Half y, Half x) => (Half)MathF.
Atan2
((float)y, (float)x);
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
808
public static float Atan2(float y, float x) => MathF.
Atan2
(y, x);