Skip to content

Instantly share code, notes, and snippets.

@bcuz
Created February 27, 2017 18:02
Show Gist options
  • Select an option

  • Save bcuz/5844813123189d299ce97ad42a894a0d to your computer and use it in GitHub Desktop.

Select an option

Save bcuz/5844813123189d299ce97ad42a894a0d to your computer and use it in GitHub Desktop.
var gridMotion = {
position: [0, 0],
moveHorizontal: function(stepx) {
gridMotion.position[0] += stepx;
},
moveVertical: function(stepy) {
gridMotion.position[1] += stepy;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment