arc(u,v,r,alfa-kezdőpont,alfa-végpont);


Teljes kör:
ctx.beginPath();
ctx.arc(100,100,80,0,2*Math.PI);
ctx.stroke();

Ívek:
ctx.beginPath();
ctx.arc(100,100,80,0,Math.PI);
ctx.stroke();
ctx.beginPath();
ctx.arc(100, 100, 80, Math.PI/3, Math.PI);
ctx.stroke();
ctx.beginPath();
ctx.arc(100,100,80,5*Math.PI/3, Math.PI/3);
ctx.stroke();
Pont:
ctx.beginPath();
ctx.lineWidth = 3;
ctx.arc(100,100,3,0,2*Math.PI);
ctx.stroke();