how to make a circle to revolve around the origin or fixed point?

tr1p0d

New Member
\[code\]x=0;y=0;width=50;height=50;radius=10;function() { canvas.beginPath(); canvas.arc(x,y,radius,0,Math.PI*2,true);};\[/code\]
 
Back
Top