为什么同样两个时针同样的参数 显示却不一样
function drawHour(hour){
ctx.save();
ctx.beginPath();
var rad=2 * Math.PI / 12 * hour;
ctx.rotate(rad);
ctx.lineWidth=6;
ctx.lineCap='round';
ctx.moveTo(0,10);
ctx.lineTo(0,-r/2);
ctx.stroke();
ctx.restore;
}
/*function drawMinute(minute)){
ctx.save();
ctx.beginPath();
var rad=2 * Math.PI / 60 * hour;
ctx.rotate(rad);
ctx.lineWidth=3;
ctx.lineCap='round';
ctx.moveTo(0,10);
ctx.lineTo(0,-r+18);
ctx.stroke();
ctx.restore;
}*/
drawBackground();
drawHour(4);
//drawMinute(3);
drawHour(1);