3 implementations of DrawEllipse
Microsoft.Maui.Graphics (3)
AbstractCanvas.cs (1)
174 public void DrawEllipse(float x, float y, float width, float height)
PictureCanvas.cs (1)
158 public void DrawEllipse(float x, float y, float width, float height)
ScalingCanvas.cs (1)
124 public void DrawEllipse(float x, float y, float width, float height)
7 references to DrawEllipse
Microsoft.Maui.Graphics (7)
CanvasExtensions.cs (5)
108 target.DrawEllipse((float)rect.X, (float)rect.Y, (float)rect.Width, (float)rect.Height); 113 target.DrawEllipse(rect.X, rect.Y, rect.Width, rect.Height); 213 target.DrawEllipse(x, y, size, size); 222 target.DrawEllipse((float)x, (float)y, (float)size, (float)size); 231 target.DrawEllipse(x, y, size, size);
PictureCanvas.cs (1)
160 _commands.Add(canvas => canvas.DrawEllipse(x, y, width, height));
ScalingCanvas.cs (1)
126 _canvas.DrawEllipse(x * _scaleX, y * _scaleY, width * _scaleX, height * _scaleY);