Skip to content

Instantly share code, notes, and snippets.

View vyuvalv's full-sized avatar
:octocat:
Awesome stuff

Yuval Vardi vyuvalv

:octocat:
Awesome stuff
View GitHub Profile
@vyuvalv
vyuvalv / gameOfLife.js animation
Created November 22, 2020 15:43
canvas animation
// We must initialize the animate method in constructor
constructor() {
super();
this.animate = this.animate.bind(this);
}
onPlay() {
// Run animation
this.animate();
}