I implemented an algorithm to find the alpha shape of a set of points. The alpha shape is a concave hull for a set of points, whose shape depends on a parameter alpha deciding which points make up the hull.
I have resolved the set of points in concave hull. These points make up a concave polygon. I would like to order these points in a clockwise manner.
Ordering points clockwise is straightforward when it is a convex shape. How to do this with a concave thing ? What algorithm is behind? I looked at 'non crossing shortest path' algorithms, 'shortest non crossing Hamiltonian path' algorithms. Is it the right approach ?