Skip to content

Instantly share code, notes, and snippets.

@eamonnmcevoy
Last active September 11, 2018 18:40
Show Gist options
  • Save eamonnmcevoy/ddbd64483c8bde2268449a3635062c83 to your computer and use it in GitHub Desktop.
Save eamonnmcevoy/ddbd64483c8bde2268449a3635062c83 to your computer and use it in GitHub Desktop.
generateDataSet() {
this.updatedCells = [];
...
}
setPoint(point, state) {
...
this.updatedCells.push(point);
}
render() {
for (let i = 0; i < this.updatedCells.length; i++) {
const point = this.updatedCells[i];
...
}
this.updatedCells = [];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment