var ctx=document.getElementById("canvas").getContext("2d");
ctx.rect(0,0,800,600);
ctx.stroke();
circle=function(x,y,radius){
ctx.beginPath();
ctx.arc(x,y,radius,0,Math.PI*2,false);
ctx.fill();
};
var ball=function(){
this.x=100;
this.y=100;
this.xSpeed=-2;
this.ySpeed=5;
this.draw=function(){
circle(this.x,this.y,20);
};
};
ball.draw();
Вот и не рисует шарик... А если вызвать circle(100,100,20) то все нормально. Подскажите, что не так? Спасибо.