Skip to content

Instantly share code, notes, and snippets.

@dennisschaaf
Created December 20, 2011 11:39
Show Gist options
  • Save dennisschaaf/1501300 to your computer and use it in GitHub Desktop.
Save dennisschaaf/1501300 to your computer and use it in GitHub Desktop.
A long hand drawn line in html5 canvas.
// Draw a long hand drawn line in html5 canvas
ctx.beginPath();
ctx.moveTo(300,35);
ctx.lineTo(35,150);
ctx.stroke();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment