PDA

View Full Version : Points in Polygon



jesse_mark
27th September 2012, 17:31
I have polygon, but i need to access its points and know how much points it has??
how can i do this ??

boudie
27th September 2012, 18:08
QPolygon is a QVector<QPoint>, so you can use all functions from QVector, like count().

jesse_mark
27th September 2012, 20:58
thank you :)