9 references to Sqrt
Microsoft.Maui.Graphics (9)
GeometryUtil.cs (1)
14
return MathF.
Sqrt
(a * a + b * b);
Matrix3x2Extensions.cs (2)
145
return MathF.
Sqrt
(areaScale);
166
scale = MathF.
Sqrt
(MathF.Abs(det));
PathArcExtensions.cs (5)
47
rx = MathF.
Sqrt
(radiiCheck) * rx;
48
ry = MathF.
Sqrt
(radiiCheck) * ry;
57
float coef = sign * MathF.
Sqrt
(sq);
74
float n = MathF.
Sqrt
(ux * ux + uy * uy);
82
n = MathF.
Sqrt
((ux * ux + uy * uy) * (vx * vx + vy * vy));
PointF.cs (1)
116
return MathF.
Sqrt
(MathF.Pow(X - other.X, 2) + MathF.Pow(Y - other.Y, 2));