3 implementations of DrawArc
Microsoft.Maui.Graphics (3)
AbstractCanvas.cs (1)
142 public void DrawArc(float x, float y, float width, float height, float startAngle, float endAngle, bool clockwise, bool closed)
PictureCanvas.cs (1)
128 public void DrawArc(float x, float y, float width, float height, float startAngle, float endAngle, bool clockwise, bool closed)
ScalingCanvas.cs (1)
114 public void DrawArc(float x, float y, float width, float height, float startAngle, float endAngle, bool clockwise, bool closed)
4 references to DrawArc
Microsoft.Maui.Graphics (4)
CanvasExtensions.cs (2)
267 canvas.DrawArc(bounds.X, bounds.Y, bounds.Width, bounds.Height, startAngle, endAngle, clockwise, closed); 282 canvas.DrawArc((float)bounds.X, (float)bounds.Y, (float)bounds.Width, (float)bounds.Height, startAngle, endAngle, clockwise, closed);
PictureCanvas.cs (1)
130 _commands.Add(canvas => canvas.DrawArc(x, y, width, height, startAngle, endAngle, clockwise, closed));
ScalingCanvas.cs (1)
116 _canvas.DrawArc(x * _scaleX, y * _scaleY, width * _scaleX, height * _scaleY, startAngle, endAngle, clockwise, closed);