Skip to content

Instantly share code, notes, and snippets.

@anuraghazra
Created May 16, 2019 13:03
Show Gist options
  • Save anuraghazra/b52d188604a20b27e5c47a26ffbf8d2a to your computer and use it in GitHub Desktop.
Save anuraghazra/b52d188604a20b27e5c47a26ffbf8d2a to your computer and use it in GitHub Desktop.
render(ctx) {
ctx.beginPath();
ctx.strokeStyle = this.color;
ctx.moveTo(this.startPoint.pos.x, this.startPoint.pos.y);
ctx.lineTo(this.endPoint.pos.x, this.endPoint.pos.y);
ctx.stroke();
ctx.closePath();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment