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)
2171
public static Half Pow(Half x, Half y) => (Half)MathF.
Pow
((float)x, (float)y);
src\libraries\System.Private.CoreLib\src\System\Single.cs (5)
634
public static float Exp2(float x) => MathF.
Pow
(2, x);
637
public static float Exp2M1(float x) => MathF.
Pow
(2, x) - 1;
640
public static float Exp10(float x) => MathF.
Pow
(10, x);
643
public static float Exp10M1(float x) => MathF.
Pow
(10, x) - 1;
1496
public static float Pow(float x, float y) => MathF.
Pow
(x, y);