Skip to content

Instantly share code, notes, and snippets.

@kenmazaika
Created May 18, 2015 18:01
Show Gist options
  • Save kenmazaika/a427bd8454a65d17531f to your computer and use it in GitHub Desktop.
Save kenmazaika/a427bd8454a65d17531f to your computer and use it in GitHub Desktop.
@image[loc[0]][loc[1]+1]=1 if loc[1]<(@image[loc[0]].length-1)
@image[loc[0]][loc[1]-1]=1 if loc[1]>0
@image[loc[0]+1][loc[1]]=1 if loc[0]<(@image.length-1)
@image[loc[0]-1][loc[1]]=1 if loc[0]>0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment