Skip to content

Instantly share code, notes, and snippets.

@anuraghazra
Created May 16, 2019 12:23
Show Gist options
  • Save anuraghazra/31c636144e51c7c54f7b9bc4d28548d5 to your computer and use it in GitHub Desktop.
Save anuraghazra/31c636144e51c7c54f7b9bc4d28548d5 to your computer and use it in GitHub Desktop.
Rendering the dots.
render() {
ctx.beginPath();
ctx.fillStyle = this.color;
ctx.arc(this.pos.x, this.pos.y, this.radius, 0, Math.PI * 2);
ctx.fill();
ctx.closePath();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment