Draw a filled arc with the FillArc method. This requires x, y, width, height, startAngle, and endAngle arguments of type float, and a clockwise argument of type bool.
The following example shows how to draw an arc:
C#
canvas.FillColor = Colors.Teal;
canvas.FillArc(10, 10, 100, 100, 0, 180, true);
Share with