- Compute the centroid of the "polygon"
- Compute the rays from the centroid to each of your "vertices".
- Use atan2 to compute the angle of this ray from the horizontal
- Sort the vertices according to this angle.
How to correctly order polygon vertices?
22 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Tyler
el 10 de Nov. de 2017
Comentada: Guy Tsror
el 30 de Nov. de 2017
I have a set of vertices [x,y] for a specific polygon. I want to use the inpolygon function to determine points within the polygon. However, the vertices are currently out of order and do not work with inpolygon. I have tried using convhull to clean up the ordering, but doing this ignores some of the vertices, and I need to keep all of them.
I've attached an image of what this looks like.
The blue line is the plot of the vertices in their current order. The blue circles are each of the vertices, and the red stars are the points considered when using the convex hull (due to slight curvature in some of the edges, the blue circles without red stars are excluded from the convex hull). What approach would allow me to correctly re-order my vertices?
0 comentarios
Respuesta aceptada
Matt J
el 10 de Nov. de 2017
Editada: Matt J
el 10 de Nov. de 2017
5 comentarios
Guy Tsror
el 30 de Nov. de 2017
I did use the centroid when calculating this - it gives you the length of the triangle sides when you consider the vertices of the polygon.
Más respuestas (0)
Ver también
Categorías
Más información sobre Computational Geometry en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!