I have to draw an arc between two points at the edge of a circle. Assuming that the arc is drawn always in the shortest distance possible(edit2: sweep flag set to 0), I need to know if the arc is drawn clockwise or anticlockwise.
I got the following inputs:
- start point (point1)
- end point (point2)
- center point
- radius
Edit1: This question is related to arcs in svg. Hence its belongs to programming.