3 implementations of FillArc
Microsoft.Maui.Graphics (3)
AbstractCanvas.cs (1)
148 public abstract void FillArc(float x, float y, float width, float height, float startAngle, float endAngle, bool clockwise);
PictureCanvas.cs (1)
133 public void FillArc(float x, float y, float width, float height, float startAngle, float endAngle, bool clockwise)
ScalingCanvas.cs (1)
119 public void FillArc(float x, float y, float width, float height, float startAngle, float endAngle, bool clockwise)
5 references to FillArc
Microsoft.Maui.Graphics (5)
CanvasExtensions.cs (3)
252 canvas.FillArc(x, y, width, height, startAngle, endAngle, clockwise); 297 canvas.FillArc(bounds.X, bounds.Y, bounds.Width, bounds.Height, startAngle, endAngle, clockwise); 311 canvas.FillArc((float)bounds.X, (float)bounds.Y, (float)bounds.Width, (float)bounds.Height, startAngle, endAngle, clockwise);
PictureCanvas.cs (1)
135 _commands.Add(canvas => canvas.FillArc(x, y, width, height, startAngle, endAngle, clockwise));
ScalingCanvas.cs (1)
121 _canvas.FillArc(x * _scaleX, y * _scaleY, width * _scaleX, height * _scaleY, startAngle, endAngle, clockwise);