10 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\runtime\src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
2254
public static Half Pow(Half x, Half y) => (Half)MathF.
Pow
((float)x, (float)y);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (5)
630
public static float Exp2(float x) => MathF.
Pow
(2, x);
633
public static float Exp2M1(float x) => MathF.
Pow
(2, x) - 1;
636
public static float Exp10(float x) => MathF.
Pow
(10, x);
639
public static float Exp10M1(float x) => MathF.
Pow
(10, x) - 1;
1549
public static float Pow(float x, float y) => MathF.
Pow
(x, y);
System.Windows.Forms (2)
System\Windows\Forms\Rendering\Button\PopupButtonColorMath.cs (1)
200
: MathF.
Pow
((value + 0.055f) / 1.055f, 2.4f);
System\Windows\Forms\Rendering\Button\PopupButtonEasing.cs (1)
31
: 1f - (MathF.
Pow
((-2f * t) + 2f, 2f) / 2f);