Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Having a list of points, how do I find if they are in clockwise order?

For example:

point[0] = (5,0)
point[1] = (6,4)
point[2] = (4,5)
point[3] = (1,5)
point[4] = (1,0)

would say that it is anti-clockwise (counter-clockwise for some people).

share|improve this question
anti-clockwise => counter clockwise – ufukgun Jul 22 '09 at 14:32
6  
Not in every English. – AakashM Jul 22 '09 at 14:34
1  
sorry, i did not know that anti-clockwise. i just learned anyway just for fun i checked it on googlefight :) googlefight.com/… – ufukgun Jul 22 '09 at 14:52

7 Answers

up vote 77 down vote accepted

Some of the suggested methods will fail in the case of a non-convex polygon, such as a crescent. Here's a simple one that will work with non-convex polygons (it'll even work with a self-intersecting polygon like a figure-eight, telling you whether it's mostly clockwise).

Sum over the edges, (x2-x1)(y2+y1). If the result is positive the curve is clockwise, if it's negative the curve is counter-clockwise. (The result is twice the enclosed area, with a +/- convention.)

point[0] = (5,0)   edge[0]: (6-5)(4+0) =   4
point[1] = (6,4)   edge[1]: (4-6)(5+4) = -18
point[2] = (4,5)   edge[2]: (1-4)(5+5) = -30
point[3] = (1,5)   edge[3]: (1-1)(0+5) =   0
point[4] = (1,0)   edge[4]: (5-1)(0+0) =   0
                                         ---
                                         -44  counter-clockwise
share|improve this answer
Hmm... something seems to be messing up my code block tags. – Beta Jul 22 '09 at 15:04
1  
Fixed it for you :) – ajm Jul 22 '09 at 21:31
Thanks! (I didn't know people could do that...) – Beta Jul 23 '09 at 18:46
1  
Great. But can someone please explain why does it work? – buti-oxa Jul 25 '09 at 21:23
3  
It's calculus applied to a simple case. (I don't have the skill to post graphics.) The area under a line segment equals its average height (y2+y1)/2 times its horizontal length (x2-x1). Notice the sign convention in x. Try this with some triangles and you'll soon see how it works. – Beta Jul 27 '09 at 14:20
show 8 more comments

Because the cross product measures the degree of perpindicularness of two vectors... If you imagine that each edge of your polygon is a vector in the x-y plane of a 3-d xyz space, then the cross product of two successive edges would be a vector in the z-direction (if the second segment is clockwise) or in the minus z-direction (for counter-clockwise), whose magnitude is proportional to the sine of the angle between the two original edges (which reaches a maximum when they are perpindicular)

so for each vertex (point) of the polygon, calculate the cross-product magnitude of the two adjoining edges...

using your data:
point[0] = (5,0)
point[1] = (6,4)
point[2] = (4,5)
point[3] = (1,5)
point[4] = (1,0)

Say vertex A(point[0]) is between

  • edge Point[4]->Point[0] is edge A or vector (1-5, 0) = (-4, 0)
  • edge Point[0]->Point[1] is edge B or vector (6-5, 4) = ( 1, 4)

then it's cross product is the determinent of following matrix

     i    j    k
   a1   a2    0
   b1   b2    0

or...

   i    j    k 
 -4    0    0
   1    4    0    

since all cross-producst are perpindicular to the plane of two vectors being multiplied, this will only have a k-component, (z-axis) and it's value is a1*b2 - a2*b1 = -4* 4 - 0* 1 = -16 The magnitude of this value is a measure of the sine of the angle between the 2 original vectors, times the product of the magnitudes of the 2 vectors.. So you need to divide it by the product of the magnitudes of the two vectors

|A| * |B|    = -16 / (4  * Sqrt(17))  

(no need to take arcsine all we will care about is whether sign turns out positive or negative)

do this for each of the other 4 points, and add up the values.

If final sum is positive, you went clockwise, negative, counterclockwise

share|improve this answer
4  
This explains the accepted answer a lot better. – Xolve May 11 '11 at 10:57
Actually, this solution is a different solution than the accepted solution. Whether they are equivalent or not is a question I am investigating, but I suspect they are not... The accepted answer calculates the area of the polygon, by taking the difference between the area under the top edge of the polygon and the area under the bottom edge of the polygon. One will be negative (the one where you are traversing from left to right), and the other will be negative. When traversing clockwise, The upper edge is traversed left to right and is larger, so the total is positive. – Charles Bretana Apr 6 at 14:29
My solution measures the sum of sines of the changes in edge angles at each vertex. This will be positive when traversing clockwise and negative when traversing counter clockwise. – Charles Bretana Apr 6 at 14:30

Start at one of the vertices, and compute the angle subtended by each side.

The first and the last will be zero (so skip those); for the rest, the sine of the angle will be given by the cross product of the normalizations to unit length of (point[n]-point[0]) and (point[n-1]-point[0]).

If the sum of the values is positive, then your polygon is drawn in the anti-clockwise sense.

share|improve this answer
Seeing as how the cross product basically boils down to a positive scaling factor times the sine of the angle, it's probably better to just do a cross product. It'll be faster and less complicated. – ReaperUnreal Jul 22 '09 at 14:44

Find the vertex with smallest y (and largest x if there are ties). Let the vertex be A and the next vertices in the list be B and C. Now compute the sign of the cross product of AB and AC. See this.

share|improve this answer

I guess this is a pretty old question, but I'm going to throw out another solution anyway, because it's straightforward and not mathematically intensive - it just uses basic algebra. Calculate the signed area of the polygon. If it's negative the points are in clockwise order, if it's positive they are counterclockwise. (This is very similar to Beta's solution.)

Calculate the signed area: A = 1/2 * (x1*y2 - x2*y1 + x2*y3 - x3*y2 + ... + xn*y1 - x1*yn)

Or in pseudo-code:

signedArea = 0
for each point in points:
    x1 = point[0]
    y1 = point[1]
    x2 = nextPoint[0]
    y2 = nextPoint[1]

    signedArea += (x1 * y2 - x2 * y1)
end for
return signedArea / 2

Note that if you are only checking the ordering, you don't need to bother dividing by 2.

Sources: http://mathworld.wolfram.com/PolygonArea.html

share|improve this answer

this is my solution using the above suggestions

def segments(poly):
    """A sequence of (x,y) numeric coordinates pairs """
    return zip(poly, poly[1:] + [poly[0]])

def check_clockwise(poly):
    clockwise = False
    if (sum(x0*y1 - x1*y0 for ((x0, y0), (x1, y1)) in segments(poly))) < 0:
        clockwise = not clockwise
    return clockwise

poly = [(2,2),(6,2),(6,6),(2,6)]
check_clockwise(poly)
False

poly = [(2, 6), (6, 6), (6, 2), (2, 2)]
check_clockwise(poly)
True
share|improve this answer

find the center of mass of these points.

suppose there are lines from this point to your points.

find the angle between two lines for line0 line1

than do it for line1 and line2

...

...

if this angle is monotonically increasing than it is counterclockwise ,

else if monotonically decreasing it is clockwise

else (it is not monotonical)

you cant decide, so it is not wise

share|improve this answer
by "center of mass" I think you mean "centroid"? – Vicky Chijwani Oct 9 '12 at 4:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.