I have the two coordinate start(x1,y1) end(x2,y2) and circle(c1,c2)
x1, y1, x2, y2, c1, c2, radius, clockwise
I want to draw an arc, from (x1,y1) to (x2,y2), I think the SVG Path is
M x1 y1 A radius radius 0 ? clockwise x2 y2
But How Can I Determine the large-arc-flag is 1 or 0, thanks.