Skip to content

Instantly share code, notes, and snippets.

@mkoryak
Created May 7, 2015 20:37
Show Gist options
  • Save mkoryak/a0b2455c7b0948443792 to your computer and use it in GitHub Desktop.
Save mkoryak/a0b2455c7b0948443792 to your computer and use it in GitHub Desktop.
circular index
circularIndex = (idx, len) ->
return ((idx % len) + len) % len
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment