0
¿Por qué me arroja error en canvas.getContext("2d"); ? ¿Cómo corrijo mi código?
1 Réponse
+ 1
// Math.PI with capital I
// needs ctx.fill() for blue
function circulo(){
ctx.lineWidth = 3;
ctx.fillStyle = "blue";
ctx.beginPath();
ctx.arc(150, 150, 150, 0, 2*Math.PI, true);
ctx.fill();
}