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

This question is a 3d version of a previous question of mine (and the answer provided by eudoxos.) ordering shuffled points that can be joined to form a polygon (in python)

to order a set of shuffled points by their polar angle we use the key:

key=lambda p: math.atan2(p[1]-cent[1],p[0]-cent[0])

what key can I use for a plane in 3d space containing the points and the centroid?

note:

Now these points are in the form (x, y, z). finding the centroid is straightforward.

cent=(sum([p[0] for p in pp])/len(pp),sum([p[1] for p in pp])/len(pp), sum([p[2] for p in pp])/len(pp))

Another way to solve this is to use a rotation matrix to rotate the plane into xy plane and reuse the existing code in 2d. any code to do this?

Any other way to solve the problem? (the polygons needn't be convex)

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.