SkPath path; path.arcTo(100, 100, 200, 200, 0, 90, false);
SkPath path; path.moveTo(50, 50); path.arcTo(100, 100, 200, 200, 180, 90, true);This will start the path at (50, 50) and draw a quarter circle arc from (200, 200) back to (100, 100) with a radius of 100. The parameters 180 and 90 define the start and end angles of the arc respectively. The last parameter true specifies that the arc should be drawn clockwise. Package library: Skia.