Hello.
I made a webpage using html and javascript (http://html-js.comxa.com/Animação.html - in Portuguese). But it seems to me that when I stop the ball (by setting “Velocidade” to 0) its outline is wider in the left side and thinner in the right. Do it seems to you too?
The javascript part I wrote to draw the ball is:
d.beginPath();
d.fillStyle = "blue";
d.arc(x,y,radius,0,Math.PI*2,false);
d.fill();
d.lineWidth = 1; //Ball stroke
d.beginPath();
d.arc(x,y,radius,0,Math.PI*2,false);
d.stroke();
and you can also find it in the last script of the page (code variables,etc is in English).
Do you know why this is happening? How could I fix it? Thank you for help!