Skip to content

Instantly share code, notes, and snippets.

@nextechu
Last active August 29, 2015 13:57
Embed
What would you like to do?
context.beginPath();
context.lineWidth = 10;
context.fillStyle = "blue";
context.arc(305, 135, 10, 0, 360);
context.fill();
context.stroke();
context.closePath();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment