1 write to RadiusY
Microsoft.Maui.Controls (1)
Shapes\EllipseGeometry.cs (1)
21 RadiusY = radiusY;
7 references to RadiusY
Microsoft.Maui.Controls (5)
Shapes\EllipseGeometry.cs (3)
32 /// <summary>Bindable property for <see cref="RadiusY"/>.</summary> 34 BindableProperty.Create(nameof(RadiusY), typeof(double), typeof(EllipseGeometry), 0.0); 63 var radiusY = (float)RadiusY;
Shapes\GeometryHelper.cs (2)
72 int max = (int)(4 * (elipGeoSrc.RadiusX + elipGeoSrc.RadiusY) / tolerance); 77 double y = elipGeoSrc.Center.Y - elipGeoSrc.RadiusY * Math.Cos(i * 2 * Math.PI / max);
Microsoft.Maui.Controls.Compatibility (2)
iOS\Extensions\GeometryExtensions.cs (2)
48 ellipseGeometry.Center.Y - ellipseGeometry.RadiusY, 50 ellipseGeometry.RadiusY * 2);