void conicTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2, SkScalar weight)
SkPath path; path.moveTo(0, 0); path.conicTo(100, 100, 200, 0, 0.5); path.lineTo(200, 100);In this example, we create a path that starts at (0,0), adds a conic curve that starts at (100,100) and ends at (200,0) with a weight of 0.5, and then adds a straight line to (200,100). We can see from this example that the SkPath library is part of the Skia 2D graphics library.