8 references to Pow
Microsoft.Maui.Graphics (2)
PointF.cs (2)
116 return MathF.Sqrt(MathF.Pow(X - other.X, 2) + MathF.Pow(Y - other.Y, 2));
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
2171public static Half Pow(Half x, Half y) => (Half)MathF.Pow((float)x, (float)y);
src\libraries\System.Private.CoreLib\src\System\Single.cs (5)
634public static float Exp2(float x) => MathF.Pow(2, x); 637public static float Exp2M1(float x) => MathF.Pow(2, x) - 1; 640public static float Exp10(float x) => MathF.Pow(10, x); 643public static float Exp10M1(float x) => MathF.Pow(10, x) - 1; 1496public static float Pow(float x, float y) => MathF.Pow(x, y);