-
-
Save iilxy/9f58ca2d9938ef003f2b38c33caf2498 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
# Jarvis March O(nh) - Tom Switzer <[email protected]> | |
TURN_LEFT, TURN_RIGHT, TURN_NONE = (1, -1, 0) | |
def turn(p, q, r): | |
"""Returns -1, 0, 1 if p,q,r forms a right, straight, or left turn.""" | |
return cmp((q[0] - p[0])*(r[1] - p[1]) - (r[0] - p[0])*(q[1] - p[1]), 0) | |
def _dist(p, q): | |
"""Returns the squared Euclidean distance between p and q.""" | |
dx, dy = q[0] - p[0], q[1] - p[1] | |
return dx * dx + dy * dy | |
def _next_hull_pt(points, p): | |
"""Returns the next point on the convex hull in CCW from p.""" | |
q = p | |
for r in points: | |
t = turn(p, q, r) | |
if t == TURN_RIGHT or t == TURN_NONE and _dist(p, r) > _dist(p, q): | |
q = r | |
return q | |
def convex_hull(points): | |
"""Returns the points on the convex hull of points in CCW order.""" | |
hull = [min(points)] | |
for p in hull: | |
q = _next_hull_pt(points, p) | |
if q != hull[0]: | |
hull.append(q) | |
return hull |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment