Skip to content

Instantly share code, notes, and snippets.

@koenbok
Created December 28, 2016 11:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save koenbok/4c921480b6c6e61402c8495d3918648b to your computer and use it in GitHub Desktop.
Save koenbok/4c921480b6c6e61402c8495d3918648b to your computer and use it in GitHub Desktop.
layer = new CanvasLayer
point: Align.center
layer.ctx.beginPath()
layer.ctx.arc(100, 100, 90, 0, 2 * Math.PI, true)
layer.ctx.fillStyle = "#0055DD"
layer.ctx.fill()
layer.ctx.lineWidth = 20
layer.ctx.strokeStyle = "#00AAFF"
layer.ctx.stroke()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment