Skip to content

Instantly share code, notes, and snippets.

@kmaher9
Created September 9, 2018 00:07
Show Gist options
  • Save kmaher9/f75dbf9c931996a4403af42356bbb810 to your computer and use it in GitHub Desktop.
Save kmaher9/f75dbf9c931996a4403af42356bbb810 to your computer and use it in GitHub Desktop.
function Population() {
this.sticks = []
this.populationSize = 25
for(var i = 0; i < this.populationSize; i++) {
this.sticks[i] = new Stick()
}
this.run = function() {
for(var i = 0; i < this.populationSize; i++) {
this.sticks[i].update()
this.sticks[i].show()
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment