Skip to content

Instantly share code, notes, and snippets.

@ozelfatih
Created January 15, 2017 23:22
Show Gist options
  • Save ozelfatih/fcf7bfc507b3cc85dc4236df910350ec to your computer and use it in GitHub Desktop.
Save ozelfatih/fcf7bfc507b3cc85dc4236df910350ec to your computer and use it in GitHub Desktop.
function drawLine(ctx, startX, startY, endX, endY){
ctx.beginPath();
ctx.moveTo(startX,startY);
ctx.lineTo(endX,endY);
ctx.stroke();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment