Created
November 25, 2009 01:51
-
-
Save tixxit/242402 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Graham Scan - Tom Switzer <[email protected]> | |
TURN_LEFT, TURN_RIGHT, TURN_NONE = (1, -1, 0) | |
def turn(p, q, r): | |
return cmp((q[0] - p[0])*(r[1] - p[1]) - (r[0] - p[0])*(q[1] - p[1]), 0) | |
def _keep_left(hull, r): | |
while len(hull) > 1 and turn(hull[-2], hull[-1], r) != TURN_LEFT: | |
hull.pop() | |
if not len(hull) or hull[-1] != r: | |
hull.append(r) | |
return hull | |
def convex_hull(points): | |
"""Returns points on convex hull of an array of points in CCW order.""" | |
points = sorted(points) | |
l = reduce(_keep_left, points, []) | |
u = reduce(_keep_left, reversed(points), []) | |
return l.extend(u[i] for i in xrange(1, len(u) - 1)) or l |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks. It had work for me. Now I need to get the concave hull.