I can not figure out what all the parameters to the arc() function are (by experimentation) and I have not found any tutorial that seems to explain them. Where would a good explanation of the arc() function be?

link|improve this question

You might get more views (and answers) by adding a "Javascript" tag – Már Örlygsson Nov 26 '08 at 1:31
feedback

4 Answers

up vote 22 down vote accepted
arc(x, y, radius, startAngle, endAngle, anticlockwise)

The first three parameters, x and y and radius, describe a circle, the arc drawn will be part of that circle. startAngle and endAngle are where along the circle to start and stop drawing. 0 is east, Math.PI/2 is south, Math.PI is west, and Math.PI*3/2 is north. If anticlockwise is 1 then the direction of the arc, along with the Angles for north and south, are reversed.

https://developer.mozilla.org/En/Canvas_tutorial/Drawing_shapes#Arcs

link|improve this answer
Seems like the MDN page is down? – Nicky De Maeyer Aug 30 '11 at 19:30
feedback

For more information, please review the below link. I got a clear idea using this link.

http://www.html5canvastutorials.com/tutorials/html5-canvas-arcs/

link|improve this answer
feedback

According to MDC:

arc(x, y, radius, startAngle, endAngle, anticlockwise)

x, y, and radius are obviously circle parameters. startAngle and endAngle are in radians, starting east. anticlockwise is a boolean.

link|improve this answer
your link is missing a : – Sparr Nov 26 '08 at 1:03
Thanks. Link has been corrected. – strager Nov 26 '08 at 1:34
"This method takes five parameters: x and y are the coordinates of the circle's center. Radius is self explanatory. The startAngle and endAngle parameters define the start and end points of the arc in radians. The starting and closing angle are measured from the x axis. The anticlockwise parameter is a Boolean value which when true draws the arc anticlockwise, otherwise in a clockwise direction." A little clearer than "Obviously circle parameters". :-) – mangledorf Mar 11 '11 at 17:54
feedback

I was having the same problem and made a little interactive page to help make sense of it:

http://www.scienceprimer.com/drawing-circles-javascript-html5-canvas-element

All of the parameters can be adjusted and the resulting arc is rendered in real time. The page also demonstrates how the fill(), stroke() and closePath() methods interact with the arc() method.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.