Skip to content

Instantly share code, notes, and snippets.

@coderberry
Created October 23, 2011 20:24
Show Gist options
  • Select an option

  • Save coderberry/1307843 to your computer and use it in GitHub Desktop.

Select an option

Save coderberry/1307843 to your computer and use it in GitHub Desktop.
breakout.coffee
ctx = null
$(document).ready ->
# get a reference to the canvas
ctx = $('#canvas')[0].getContext("2d")
# draw a circle
ctx.beginPath()
ctx.arc(75, 75, 10, 0, Math.PI*2, true)
ctx.closePath()
ctx.fill()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment