1 write to RadiusX
Microsoft.Maui.Controls (1)
Shapes\EllipseGeometry.cs (1)
20
RadiusX
= radiusX;
7 references to RadiusX
Microsoft.Maui.Controls (5)
Shapes\EllipseGeometry.cs (3)
28
/// <summary>Bindable property for <see cref="
RadiusX
"/>.</summary>
30
BindableProperty.Create(nameof(
RadiusX
), typeof(double), typeof(EllipseGeometry), 0.0);
62
var radiusX = (float)
RadiusX
;
Shapes\GeometryHelper.cs (2)
72
int max = (int)(4 * (elipGeoSrc.
RadiusX
+ elipGeoSrc.RadiusY) / tolerance);
76
double x = elipGeoSrc.Center.X + elipGeoSrc.
RadiusX
* Math.Sin(i * 2 * Math.PI / max);
Microsoft.Maui.Controls.Compatibility (2)
Tizen\Extensions\GeometryExtensions.cs (2)
57
Forms.ConvertToScaledPixel(ellipseGeometry.Center.X - ellipseGeometry.
RadiusX
),
59
Forms.ConvertToScaledPixel(ellipseGeometry.Center.X + ellipseGeometry.
RadiusX
),