Skip to content

Instantly share code, notes, and snippets.

@jhgaylor
Created July 8, 2012 23:56
Show Gist options
  • Select an option

  • Save jhgaylor/3073483 to your computer and use it in GitHub Desktop.

Select an option

Save jhgaylor/3073483 to your computer and use it in GitHub Desktop.
if self.point.x < pt.x:
#we know we need to be in the south
if self.point.y < pt.y:
#recurse SW
pass
else:
#recurse SW
pass
else:
#we know we need to be in the north
if self.point.y < pt.y:
#recurse NW
pass
else:
#recurse NE
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment