PartTimePoet
Results
1
comments of
PartTimePoet
``` var canvas = document.getElementById('main'), ctx = canvas.getContext('2d'); canvas.style.backgroundColor = "red"; ctx.imageSmoothingEnabled = false; ctx.strokeStyle = "yellow"; ctx.beginPath(); ctx.arc(20,20,7,0,2*Math.PI); ctx.stroke(); ctx.fillStyle = "#0000ff"; ctx.fillFlood(10, 10, 1); ``` You might have...