Skip to content

Instantly share code, notes, and snippets.

@obeattie
Created September 27, 2011 07:23
Show Gist options
  • Save obeattie/1244526 to your computer and use it in GitHub Desktop.
Save obeattie/1244526 to your computer and use it in GitHub Desktop.
def remove_offset(x, y):
if y < 0:
return (x + abs(y))
else:
return (x - y)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment