Created
May 16, 2019 13:03
-
-
Save anuraghazra/b52d188604a20b27e5c47a26ffbf8d2a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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