We were drawing arc in my java application using drawArc method provided by java api. That is
drawArc(int x, int y, int width, int height, int startAngle, int arcAngle)
I am searching for similar method in Html but i couldn't succed. There is only
drawArc(x, y, radius, startangle, arcangle)
method there.
Is there any equivalent method in Html as it in Java. If not then could you please guide me about any alternate method so that i can succeed.