ArcTo
arcTo is a method of the Canvas 2D API, specifically CanvasRenderingContext2D.arcTo, used to add a circular arc to the current path. It is commonly employed to create rounded corners between line segments when drawing shapes on an HTML5 canvas.
The function takes five parameters: x1, y1, x2, y2, and radius. It adds a circular arc with
Usage notes: arcTo does not move the starting point by itself; it relies on a prior moveTo